@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Syne+Mono&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');

header{
    text-align: center;
    padding: 20px 0;
    background-color: rgba(255, 255, 255, 0.103);
    backdrop-filter: blur(5px);
    margin-bottom: 10px;

}

body{
    background-image: url(imagens-p/BK_Gigantes-2.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    margin: 0;
    min-height: 100vh;
    
}

main{
    background-image: linear-gradient(#AC7438, #BF984E, #D9A84E, #272C64);
    background-attachment: fixed;
    width: 90%;
    max-width: 600px;
    padding: 20px;
    margin: 30px auto;
    border: 1px solid black;
    border-radius: 10px;
}

h1{
    font-family: "Space Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: #272C64;
    text-shadow: 2px 2px 15px rgba(255, 255, 255, 0.8);
    font-size: 3em;
}

h2{
    text-align: center;
    color: #FFF1B0;
    text-shadow: 0 0 10px rgba(140, 53, 61, 0.8);
}

p{
    margin-bottom: 20px;
    text-align: center;
    font-family: "Syne Mono", monospace;
    font-weight: 500;
    font-style: normal;
}

iframe{
    width: 100%;
    max-width: 560px;
    display: block;
    margin: 20px auto;
    border-radius: 15px;
    aspect-ratio: 16 / 9;
}

footer {
  background-color: #272064;
  padding: 5px 0;
  width: 100%;
  
  clear: both; 
  text-align: center;
}
    
footer p{  
    margin: 2px 0; /* Margem mínima entre as linhas de texto */
    font-size: 0.9em;
    color: white;
    font-family: "Syne Mono", monospace;
    
}

footer a{
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    
}

a img{
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    background-image: linear-gradient(#AC7438, #BF984E, #D9A84E, #272C64);
    background-attachment: fixed;
    border-radius: 50%;
    padding: 5px;
}

a img:hover{
    transform: scale(0.9);
} 

