@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

body {
  background-color: #131313;
  font-family: "Inter", sans-serif;
  color: #c8c8c8;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.container {
  text-align: center;
  max-width: 550px;
  margin: 0 auto;
  padding: 20px;
}

h1 {
  font-weight: 200; /* Extra-light */
  font-size: 52px;
  margin: 0;
  text-align: left;
}

h2 {
  font-weight: 400; /* Regular */
  font-size: 20px;
  margin: 10px 0;
  margin-bottom: 50px;
  text-align: left;
}

.image-container {
  border-radius: 12px;
  border: 2px solid white;
  height: 300px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* Ensure cropping */
  margin: 20px 0;
}

.image-container img {
  width: 100%; /* Ensure the image takes the full width of the container */
  height: auto; /* Maintain aspect ratio */
  object-fit: cover; /* Crop the image */
}

p {
  font-weight: 400; /* Regular */
  font-size: 16px;
  margin: 10px 0;
  text-align: justify;
  line-height: 22px;
}

p strong {
  font-weight: bold;
  font-size: 14px;
}

/* Responsive styles */
@media (max-width: 768px) {
  h1 {
    font-size: 42px;
  }

  .image-container {
    height: 250px;
  }

  p {
    font-size: 15px;
    line-height: 18px;
  }

  p strong {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 18px;
  }

  .image-container {
    height: 200px;
  }

  p {
    font-size: 14px;
    line-height: 18px;
  }

  p strong {
    font-size: 12px;
  }
}
