* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #153912;
}

.container {
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(110, 95, 95, 0.1);
  padding: 20px;
  text-align: center;
  max-width: 400px;
  width: 100%;
  background-color: #ffffff;
}

h1 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

img {
  border-radius: 10px;
  max-width: 100%;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
  border-bottom: 1px solid black;
}

img:hover {
  transform: scale(1.05);
}

.display-flex {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

.flex {
  display: flex;
  align-items: center;
  gap: 10px;
}

p {
  font-size: 1.2rem;
  font-weight: bold;
  color: #666;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

button:hover {
  transform: scale(1.1);
}

#like-btn i {
  color: red;
}

#comment-btn i {
  color: blue;
}

#share-btn i {
  color: green;
}

#bookmark-btn i {
  color: orange;
}
