@font-face {
    font-family: milestone;
    src: url(./fonts/MilestoneFreeVersion-Script.otf);
 }

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

body{
    width: 100vw;
    height: 100vh;
    background-image: linear-gradient(140deg, rgb(224, 22, 22) 30%, rgb(218, 147, 16) 90%);
}

.container{
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
    
}

.conteudo1{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

img{
    width: 25vw;
}

h1 {
    font-family: 'Arial Black', arial;
    font-family: milestone;
    font-size: clamp(2rem, 10vw, 6rem);
    margin-top: 1rem;
    text-align: center;
    color: #ffffff;
    text-shadow: 3px 3px 5px #000;
    font-weight: lighter;
}

.resto {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    height: auto;
    margin-top: 1rem;
}

.jogador,
.vencedor {
    font-family: 'super boom', Arial Black, arial;
    font-size: clamp(1.5rem, 5vw, 3rem);
    color: #ffee00;
}

.botao{
    margin-top: 2rem;
}

.botao button{
    font-family: 'super boom', Arial Black, arial;
    color: #ffffff;
    background: #128711;
    border-radius: 7px;
    cursor: pointer;
    width: 15vw;
    height:5vh;
    font-size: clamp(8px, 2vw, 2rem);
}



.conteudo2{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.todosQuadrados{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quadrado {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10vw;
    height: 10vh;
    padding: 45%;
    font-size: clamp(2.5rem, 6vw, 6rem);
    margin: 15px;
    border-radius: 5px;
    cursor: pointer;
    background: #ffffff;
    color: #ffffff;
}

.quadrado:hover {
    background: #9c9c9c;
    color: #9c9c9c;
}

@media screen and (min-width: 768px){

    

    img{
        width:10vw;
        margin-top: 1rem;
    }

    .container{
        grid-template-columns: 1fr 1fr;
    }

    .botao button{
        font-family: 'super boom', Arial Black, arial;
        color: #ffffff;
        background: #128711;
        border-radius: 10px;
        cursor: pointer;
        width: 15vw;
        height: 10vh;
        font-size: clamp(0.9rem, 2vw, 2rem);
        box-shadow: 5px 5px 0px rgb(54, 54, 54),10px 10px 0px rgb(0, 0, 0), 15px 15px 10px rgb(50, 51, 73);
    }

    button:active {
        background-color: #1e5213;
        color: rgb(209, 209, 209);
        box-shadow: inset 10px 10px 10px #000;
        font-size: 1.5vw;
    }

}
