body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: black;
}

#escrita {
  padding-top: 5vh;
}

#logo {
  opacity: 10%;
  width: 50%;
  max-width: 300px;
  height: auto;
  transition: all 0.3s ease-in-out;
}

#texto {
  width: 100%;
  max-width: 80%;
  padding-top: 5%;
  font-family: Arial, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 50;
  color: white;
  background: linear-gradient(to bottom, white, black);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fade-out 7s ease-in-out infinite;
}

  
  @keyframes fade-out {
    0% {
        opacity: 0;
      }
      50% {
        opacity: 1;
      }
      100% {
        opacity: 0;
      }

}


#logo:hover {
    transform: scale(1.1);
    opacity: 0.8;
}