
@import url("https://fonts.googleapis.com/css2?family=Merriweather&display=swap");
@import "tailwindcss";

@theme {
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-serif: "Merriweather", Georgia, Cambria, "Times New Roman", Times, serif;
  --font-body: "Bitter", Georgia, Cambria, "Times New Roman", Times, serif;
}

html,
body {
  @apply bg-white dark:bg-gray-950;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: #3D4435;
  background-color: #F5F2EC;
  svg{
    fill: white;
  }
}

.center {
  width: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.text {
  font-size: 24px;
}

.image-container {
  width: min(30rem, 50vw);
  margin-bottom: 3rem;
  border-radius: 10%;
  overflow: hidden;
}

.image-container img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .image-container {
    width: 80%;
  }
}

@media (max-width: 480px) {
  .image-container {
    width: 100%;
  }
}
