/* General Styles */
body {
  margin: 0;
  padding: 0;
  font-family: 'Raleway', sans-serif;
  background-color: #f3eaf9; /* Dark green background */
  color: #ffffff; /* White text */
  display: flex;
  justify-content: center;
  align-items: center;
  /* text-align: center; */
}

.content {
  min-width: calc(min(300px, 100%));
  padding: 20px;
}

.full-height {
  height: 100vh;
}

/* Main Screen */
.main-screen {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.logo-image {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  border-radius: 10px;
}

/* Logo */
.logo {
  font-size: 4rem;
  font-weight: bold;
  color: #360568; /* Green text */
  margin: 0;

  /* On phones font-size: 2rem */
  @media (max-width: 768px) {
    font-size: 2.5rem;
  }
}

/* Tagline */
.tagline {
  font-size: 1.5rem;
  color: #8a4eff; /* White text */
  margin-top: 10px;
}

/* Privacy Policy Link */
.privacy-link {
  color: #360568; /* Green text */
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.privacy-link:hover {
  color: black; /* White text on hover */
}

.footer {
  position: absolute;
  display: flex;
  align-items: center;
  bottom: 20px;
  gap: 16px;
  padding: 0 20px;
}

.download-button {
  img {
    height: 50px;
    margin-top: 20px;
    cursor: pointer;
  }
}


/* Responsive Design */
@media (max-width: 768px) {
  .main-screen {
    flex-direction: column;
  }
}

/* Privacy Policy Styles */
.policy-container {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  color: #360568;
  background-color: #f3eaf9; /* Green background */
  border-radius: 10px;
  justify-content: flex-start;
  align-items: flex-start;
}

.policy-container h1 {
  font-size: 2.5rem;
  color: #360568; /* Green text */
  margin-bottom: 10px;
}

.policy-container h2 {
  font-size: 1.8rem;
  color: #360568; /* Green text */
  margin-top: 20px;
  margin-bottom: 10px;
}

.policy-container p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.policy-container ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.policy-container ul li {
  margin-bottom: 10px;
}

.policy-container a {
  color: #8a4eff; /* Green text */
  text-decoration: none;
  transition: color 0.3s ease;
}

.policy-container a:hover {
  color: #360568; /* White text on hover */
}

.last-updated {
  font-size: 0.9rem;
  color: #8a4eff; /* White text */
  margin-bottom: 20px;
}

/* Styles for the overflowing teeth animation */
.teeth-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Allow clicks on content behind the teeth */
  overflow: hidden;
  z-index: -2;
}

.tooth {
  position: absolute;
  transition: transform 1s ease, opacity 1s ease;
}

/* Optional:Infinite */
.animate__bounceInUp {
  animation: bounceInUp 1s forwards;
}

@keyframes bounceInUp {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  60% {
    opacity: 1;
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0);
  }
}
