* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    font-family: Arial, sans-serif;
}

.background {
    background: url(imagens/home_page1.jpg) no-repeat center center/cover;
    height: 100vh;

}

header {
    width: 50%;
    max-width: 1100px;

    margin-left: auto;
    margin-right: auto;
}

nav img {
    width: 200px;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;

    color: white;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

nav a:hover {
    opacity: 0.7;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 3px;
}







body {

    font-family: "Jura", sans-serif;

}

/* transformar uma imagem em block */
img {
    display: block;
    width: 100%;
}

/* a mesma coisa para o button */
button {
    display: block;
}


/* o # representa um id no HTML */


#logotipo {

    width: 100px;
    margin-left: auto;
    margin-right: auto;

}

#introducao_texto {

    width: 70%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    gap: 30px;
    color: white;

}

#introducao {

    background-image: url(imagens/introducao\ \(1\).jpg);
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 600px;

    padding-top: 40px;
    padding-bottom: 40px;
}

.conteudo_centrado {

    color: white;

    width: 70%;
    max-width: 1100px;

    margin-left: auto;
    margin-right: auto;

    display: flex;
    gap: 30px;

    padding-top: 70px;
    padding-bottom: 40px;

}


.duas_colunas {
    width: 50%;
    padding-bottom: 40px;
}

button {
    width: 150px;
    margin-left: auto;
    margin-right: auto;
    background-color: red;


}

#jogos {

    color: white;

}


#shop {

    color: white;
    margin-bottom: auto;

    padding-top: 300px;
    padding-bottom: 300px;
}

.tres_colunas {

    width: 33.3%;


}

.texto_roupas {

    text-align: center;

    padding-top: 40px;
    padding-bottom: 40px;

}

.preco_roupas {

    text-align: center;

    padding-top: 20px;
    padding-bottom: 20px;

}

#shop {
    background-color: rgb(0, 0, 0);

}

button {


    width: 150px;
    margin-left: auto;
    margin-right: auto;

    background-color: rgb(255, 255, 255);

    padding-top: 20px;
    padding-bottom: 20px;

    border: 0;

}

footer {
    background-color: #212529;
    height: 300px;
    font-size: small;
    text-align: center;
    color: white;

}


#menu {

    display: flex;
    height: 50px;
    gap: 30px;
    margin-left: auto;
    margin-right: auto;

}


.rodape {


    width: 70%;
    margin-left: auto;
    margin-right: auto;


}

.rodape img {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

h2 {

    font-family: "Orbitron", sans-serif;
    font-weight: 900;

}

h3 {

    font-family: "Orbitron", sans-serif;
    font-weight: 900;

}



.button {
    background-color: #000000;

    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}

.button {
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    border: 2px solid #e7e7e7;
}


@media (max-with:600px) {

    .conteudo_centrado {
        flex-direction: column;
        width: 95%;
    }

    .duas_colunas {
        width: 100%;
    }

}