/* transformar uma imagem numa marca block */
img {
     display: block;
     width: 100%;
}

body {
     font-family: "Playfair Display", serif;

     background-color: black;

}

header {
     background-color: black;
     padding-top: 40px;
     padding-bottom: 40px;

}

header a {
     margin-left: 20px;
     margin-right: 20px;

}



#logo {
     width: 120px;
}




#centra_cabecalho {

     width: 70%;
     margin-left: auto;
     margin-right: auto;

     display: flex;
     justify-content: center ;
     align-items: flex-end;

}


/* a mesma coisa para o button */

a {
     font-size: 16px;
     font-weight: 600;

     color: white;
     text-decoration: none;
}

a:hover {
     text-decoration: underline;
}

button {

     width: 150px;
     margin-left: auto;
     margin-right: auto;
     background-color: #407edb;
     padding-top: 20px;
     padding-bottom: 20px;
     border: 0;
     display: block;

}


#sobre_o_jogo {
     width: auto;
     height: 500px;
     color: white;
     border: 4px solid black;
     background-image: url(imagens/SalMaskEp5.webp);
     background-position: center;
}





.conteudo_centrado {

     width: 70%;
     align-items: baseline;
     margin-left: auto;
     margin-right: auto;
     margin-bottom: 50px;
     display: flex;
     gap: 30px;
}

/* o . refere-se a uma class */
.duas_colunas {
     width: 50%;
     align-items: baseline;
}


h1 {

     font-size: 96px;
     color: #407edb;

     text-align: center;
}

h2 {
     text-align: center;
     color: white;
     size: 25px;
}

h3 {
     color: white;
     text-align: center;

}

h4 {
     font-size: 30px;
     text-align: center;
     color: white;
}

h5 {
     text-align: center;
     color: white;
     font-size: 20px;
}

h6 {
     color: white;
     text-align: center;
     font-size: 20px;
}

/* o # representa um id no HTML */

#entrada {


     text-align: center;

     background-color: black;

     background-image: url(imagens/eyes.png);
     background-repeat: no-repeat;
     background-size: 80%;
     background-position: center;

     height: 600px;
}

.tres_colunas {

     height: 300px;

     width: 33.3%;

     background-color: rgb(0, 0, 0);
}

.quatro_colunas {

     margin-bottom: 30px;
     margin-top: 30px;
     width: 25%;

     background-color: rgb(0, 0, 0);

}

@media(max-width:600px) {

.conteudo_centrado{
flex-direction: column;
width: 95px;

}

.duas_colunas{

width: 100px;

}

.tres_colunas{

     width: 100px;
}

.quatro_colunas{

width: 100px;

}