/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: black;
  color: white;
  font-family: arial;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

/* Container que segura os links */
.menusetting {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

/* Estilo DE CADA LINK */
.menu {
    text-decoration: none;      /* sem sublinhado */
    color: white;               /* letra branca */
    font-size: 1rem;
    font-family: Arial;
    font-weight: bold;
    
    /* Sua animação existente */
    display: inline-block;
    opacity: 0;
    transform: translateY(50px);
    animation: sobeMenu 1.0s forwards;
}

.menu:hover{
  text-decoration: underline;
}

.letras {
    
    display: flex;
    gap: 0.4em;
    font-size: 8rem;
    font-weight: bold;
    font-family: Arial;
    justify-content: center;
    align-items: start;
    min-height: 100vh;
}
.letrasTiny {
    display: flex;
    gap: 0.1em;
    font-size: 2rem;
    font-family: 'arial', monospace;
    justify-content: center;
    align-items: stretch;
    min-height: 100vh;
}
.infos {
    display: flex;
    gap: 0.1em;
    font-size: 2rem;
    font-family: 'arial', monospace;
    align-items: start;
    margin-bottom: 1rem;
}
.letraTiny {
  display: inline-block;
  opacity: 0;
  transform: translateY(50px);
  animation: sobeLetraTiny 2.0s forwards;
  }

.letra {
    text-decoration: none;
    color: white;
    display: inline-block;
    opacity: 0;
    font-weight: bold;
    font-family: Arial;
    transform: translateY(100px);
    animation: sobeLetra 1.0s forwards;
}
.info {
    text-decoration: none;
    color: white;
    display: inline-block;
    opacity: 0;
    font-weight: bold;
    font-family: Arial;
    transform: translateY(100px);
    animation: sobeLetra 1.0s forwards;
}

@keyframes sobeMenu {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
  
}

@keyframes sobeLetraTiny {
  0% {
    opacity: 0;
    transform: translateY(50px);
    }
  100% {
    opacity: 1;
    transform: translateY(0);
    }  
  
  }

@keyframes sobeLetra {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu:nth-child(1)  { animation-delay: 0.0s; }
.info:nth-child(1)  { animation-delay: 0.0s; }
.letra:nth-child(1) { animation-delay: 0.0s; }
.letra:nth-child(2) { animation-delay: 0.1s; }
.letra:nth-child(3) { animation-delay: 0.2s; }
.letra:nth-child(4) { animation-delay: 0.3s; }
.letra:nth-child(5) { animation-delay: 0.4s; }
.letra:nth-child(6) { animation-delay: 0.5s; }
.letra:nth-child(7) { animation-delay: 0.6s; }
.letra:nth-child(8) { animation-delay: 0.7s; }
.letraTiny:nth-child(1) { animation-delay: 0.4s; }
.letraTiny:nth-child(2) { animation-delay: 0.3s; }
.letraTiny:nth-child(3) { animation-delay: 0.2s; }
.letraTiny:nth-child(4) { animation-delay: 0.1s; }
.letraTiny:nth-child(5) { animation-delay: 0.0s; }