@import url('https://fonts.googleapis.com/css2? família=Anton&family=Bebas+Neue&family=Indie+Flower&family=Sora:wght@400;500&display=swap');

/*  resete css */

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* embrulho pagina */

.wrapper {
    width: 90%;
    margin: 0 auto;
    max-width: 1440px;
}


/* separaçao dos itens */

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


/* todos os h1 */

h1 {
    font-family: 'Anton', sans-serif;
    border-style: solid;
    font-size: 70px;
    color: white;
    width: max-content;
    height: initial;
}


/* estilo cabeçalho */

#cabecalho {
    background-color: #504F4F;
    box-shadow: 0px 4px 10px 0px black;
}

.logo {
    margin: 15px 0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}


/* rodapé */

#rodape {
    background-color: #7A7A7A;
}

#icones {
    margin: 10px 0px;
}

.icone1 {
    margin: 0px 20px;
    width: 35px;
    height: 40px;
}

.icone {
    margin: 0px 20px;
    width: 30px;
    height: 30px;
}

#direitos {
    width: 500px;
    margin: 20px 0px 50px;
}

#direitos>h3 {
    font-size: 16px;
    margin-bottom: 20px;
}

li {
    list-style-type: none;
}

#cor {
    background-color: #6F6F6F;
    padding: 18px 0;
}

.jogo {
    height: 400px;
    margin: 10px;
}

input {
    border-radius: 10px;
    padding: 3px;
    margin: 20px 0px 50px;
    opacity: 0.6;
    border-style: none;
}

input:focus {
    outline: none;
    border-bottom: red;
}

input:hover {
    opacity: 1;
}

#seta-esq,
#seta-dir {
    opacity: 0.8;
    border-radius: 50%;
    padding: 3px;
    background-color: rgb(255, 255, 255);
}

#seta-esq:hover,
#seta-dir:hover {
    opacity: 1;
    color: black;
}

.link {
    height: 100%;
    padding-top: 380px;
}

@media screen and ( max-width:810px) {
    .icone {
        margin: 0px 10px;
        width: 15px;
        height: 15px;
    }
    #direitos {
        margin: 20px 15px 50px;
    }
    #direitos>h3 {
        font-size: 14px;
        margin-bottom: 20px;
    }
    li {
        list-style-type: none;
    }
    .icone1 {
        width: 15px;
        height: 20px;
        margin: 0px 10px;
    }
    .logo {
        margin: 10px 10px 0px;
    }
    .jogo {
        height: 240px;
        margin: 10px;
    }
    .jogo>a>img {
        height: 240px;
        width: 100%;
    }
}

@media screen and ( max-width:310px) {
    .wrapper {
        width: 100%;
    }
}