body {
  font-family: "Roboto", sans-serif;
  text-align: center;
  background-color: #fff;
  color: #1e1e1e;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
}

footer {
  opacity: 0.3;
  font-size: 0.7rem;
}

:root {
  --dark: #1c1c1c;
  --light: #c4c4c4;
  --teal: #008080;
}

main {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

h2 {
  font-size: 2.5rem;
  font-weight: 500;
}

.mobile {
  display: none;
}

.logo {
  height: 3.5rem;
  transform: translate(0, 0.8rem);
}

p {
  font-size: 1.1rem;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
  flex-wrap: wrap;
}

a {
  text-decoration: none;
  font-weight: 500;
  color: #1e1e1e;
  padding: 10px 20px;
  border: 2px solid #1e1e1e;
  border-radius: 5px;
  font-size: 1.1rem;
  transition: background-color 0.3s, color 0.3s;
  display: flex;
  align-items: center;
  gap: 5px;
}

a:hover {
  background-color: #1e1e1e;
  color: #fff;
}

.whatsapp-button i,
.telegram-button i {
  font-size: 1.2rem;
}

.typed-text {
}

img.emoji {
  width: 1em;
  height: 1em;
  vertical-align: middle;
}

.cursor {
  display: inline-block;
  width: 15px;
  margin-left: 4px;
  background: rgb(61, 61, 61);
}

.cursor.blink {
  animation: blink 0.8s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    background: rgb(61, 61, 61);
  }
  40%,
  50% {
    background: transparent;
  }
}

.beta {
  font-size: 0.4em;
  background-color: rgb(223, 223, 223);
  color: rgb(41, 41, 41);
  padding: 4px;
  border-radius: 5px;
}

.privacy {
  position: relative;
  bottom: 0.5rem;
  width: 10rem;
  border: none;
  padding: 0;
  left: 50vw;
  transform: translate(-2.5rem, 0);
  text-align: center;
  font-weight: 300;
  color: rgb(190, 190, 190);
  text-decoration: underline;
}

.privacy:hover {
  background-color: #fff;
  color: black;
}

.recommended {
  position: absolute;
  bottom: 0;
  font-size: 0.65rem;
  left: 50%;
  transform: translate(-50%, 2rem);
  background-color: rgb(97, 189, 85);
  color: rgb(237, 255, 233);
  padding: 0.2rem 0.4rem 0.2rem 0.4rem;
  border-radius: 0.3rem;
}

.privacy-policy {
  text-align: left;
  margin-bottom: 25px;
}

.privacy-policy h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.privacy-policy ol,
.privacy-policy ul {
  text-align: left;
  margin: 10px 0;
  padding-left: 20px;
}

.privacy-policy li {
  margin-bottom: 5px;
}

/* Media Query for Mobile Devices */
@media (max-width: 768px) {
  h2 {
    font-size: 2.5rem;
  }

  p {
    font-size: 1rem;
  }

  .buttons {
    gap: 10px;
    margin: 10px 0;
  }

  a {
    padding: 8px 16px;
    font-size: 1rem;
  }

  .whatsapp-button i,
  .telegram-button i {
    font-size: 1.1rem;
  }

  header svg {
    width: 200px;
    height: 200px;
  }

  .bigtext {
    font-size: 50px;
  }

  .mobile {
    display: block;
  }
}
