::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background-color: #2c2c31;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(#19f7fd, #7e78ff, #ea15ff);
}

@keyframes entering {
  from { 
    opacity: 0;
    transform: translateY(-200px);
  }
  to { 
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes entering2 {
  0% { 
    opacity: 0;
  }
  100% { 
    opacity: 1;
  }
}

@keyframes entering3 {
  0% { 
    opacity: 0.5;
  }
  100% { 
    opacity: 1;
  }
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f8fb;
  color: #333;
  margin: 0%;

  background-image: url("./assets/space.gif");
  background-position: top right;
  background-repeat:repeat-y;
  background-size: 100%;
  animation: entering 1.0s ease-in-out;
}

header {
  margin: 9px;

  background-image: url("./assets/fuguete.png"); 
  background-position: top;
  background-repeat: no-repeat;
  background-size: auto 100%;

  color: #fff;
  margin-top:25px ;

  display: flex;
  
  align-items: center;

  animation: entering 1.0s ease-in-out;
}

h1 {
  font-family: Righteous, Serif;
  font-size: 200%;
  text-decoration: none;
}

h2 {
  color: #19f7fd;
  font-size: 90%;
  font-family: Bruno Ace, Serif;
  text-decoration: none;
  margin: 0px;
  margin-bottom: 10px;
}


nav ul {
  list-style: none;
  margin: 0;
  padding: 0.4%;
  display: flex;
  justify-content: center;

  background: linear-gradient(#2d2d2d,#494949);
}

nav li {
  margin-right: 20px;
}

nav li:last-child {
  margin-right: 0;
}

nav a {
  font-size: 150%;
  font-family: Teko;
  color: #fff;
  text-decoration: none;
}

/* Estilos para os botões */
.meuBotao {
  width: 400px;
  height: 300px;

  background-image: url("./assets/planeta.png");
  background-position: top;
  background-repeat: no-repeat;
  background-size: 100%;

  
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 10px;
}

/* Estilos para a grade de botões em desktops */
.grid-container {
  justify-items: center;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px; /* espaço entre os botões */
}

.meuBotao p {
  margin: 0px;
  font-size: 14px;
  color: #ea15ff;
  font-family: Bruno Ace, Serif;
}

/* Estilos para o subtítulo */

.transparente {
  height: 300px;
  width: 1px;
}

footer {
  background: linear-gradient(#2d2d2d,#494949);
  color: #fff;
  padding: 1px;
}

main{
 animation: entering 0.9s ease-in-out;
}

main a {
  text-decoration: none;
}




@media (max-width: 1200px) {
  .grid-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .meuBotao {
    width: 800px;
    height: 600px;
  }

  .titulo {
  
    margin-left: 6%;
  margin-right: 6%;
  }

  header {
    background-image: url("./assets/fugueteV2.0.png"); 
  }

  nav a {
    font-size: 300%;
      padding-left:30px ;
      padding-right:30px ;
  }

  main h{
    font-family: Bebas Neue;
    font-size: 40px; 
  }

  a img{
    width: 190px;
    height: 160px;
  }

  h2 {
    font-size: 185%;
  }

  .meuBotao p {
    font-size: 200%;
  }

  .transparente {
    height: 315px;
    width: 0px;
  }
}
