body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
  margin: 0;
  background-color: #f4f4f4;
}

.container {
  text-align: center;
  margin-top: 20px;
}

h1 {
  color: #333;
  font-size: 24px;
}

h2 {
  color: #333;
  font-size: 20px;
  margin-top: 20px;
}

button {
  background-color: pink;
  color: darkgrey;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
}

button:hover {
  background-color: #ff69b4;
}

.description {
  font-size: 14px;
  color: #333;
  margin: 20px 0;
}

.media {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

img {
  max-width: 300px;
  max-height: 300px;
}
