@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

body 
{
  background: url("./Images/background.jpg") no-repeat center center fixed;
  background-size: cover;
  font-family: "Orbitron", sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  color: white;
  text-align: center;
}


.titulo 
{
  position: absolute;
  top: 10%;
  text-align: center;
  width: 32%;
}

.titulo h2 
{
  font-size: 3rem;
  font-weight: bold;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.9);
  
}


.conteudo-jogo 
{
  background: rgba(0, 0, 0, 0.85);
  box-shadow: 0 0 10px #ffee04;
  padding: 30px;
  border-radius: 12px;
  max-width: 600px;
  width: 18%;
  margin-top: 20px;
  transition: 0.3s ease-in-out;
}

.conteudo-jogo:hover 
{
  box-shadow: 0 0 20px #ffb005;
  transform: scale(1.02);
}


button 
{
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  background: linear-gradient(45deg, #e48407, #f0b800);
  color: white;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

button:hover 
{
  background: linear-gradient(45deg, #ff6600, #f3e302);
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}


footer 
{
  position: absolute;
  bottom: 20px;
  width: 11.5%;
  text-align: center;
  background-color: rgb(165, 88, 17);
  border-radius: 20px;
}

.logo img 
{
  width: 200px;
  opacity: 0.8;
  
}


