body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.card {
  max-width: 80%;
  border: 4px solid #57694e;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 4px 4px 10px 4px rgba(0, 0, 0, 0.3);
}

.image-container {
  width: 80%;
  height: auto;
  aspect-ratio: 1/1;
}

h1,
h2 {
  margin: 30px 15px;
  text-align: center;
}

p {
  margin: 50px 40px;
  text-align: center;
  font-size: 1.2rem;
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: #101110;
    color: #fff;
  }

  .card {
    border-color: #c2a65b;
    background-color: #101110;
  }

  .image-container {
    height: 30vh;
    width: auto;
    aspect-ratio: 1/1;
    filter: brightness(0.8);
  }

  h1,
  h2 {
    color: #fff;
  }
}