html{
    margin: 0;
}

body{
    margin: 0;
    padding: 0;
}
.modalidades {
    padding: 0px;
    height: 100vh;
    background-image: url(TicTacToe-Modalidades.webp);
    background-size: cover;
    background-position: center; 
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    aspect-ratio: 16 /9;

}

.click {
    position: absolute;
    display: block;
    width: 15%;
    height: 25%;
    background: rgb(255, 0, 0, 0.0); /*só pra saber onde esta as caixas de clique, altere opacidade*/
    cursor: pointer;
}

.click2 {
    position: absolute;
    display: block;
    width: 15%;
    height: 25%;
    background: rgb(255, 0, 0, 0.0); /*só pra saber onde esta as caixas de clique, altere opacidade*/
    cursor: pointer;
}

.infantil {
    top: 4%;
    left: 4%;
}

.fundamental {
    top: 38%;
    left: 19%;
}

.cursinho {
    top: 70%;
    left: 35%;
}

.kameleon {
    display: flex;
    align-items: center;
    justify-content: center;

    font-family: Cataraman, sans-serif;
    font-size: 15px;
    text-decoration: none;
    color: #fff;

    top: 70%;
    left: 15%;
}

.kameleon:hover{
    color: #fff;
}


@media  (max-width: 900px){
    .modalidades {
        background-image: url("TicTacToe-Modaliddes-Mobile.png");
    }

    .click {
        background: rgb(255, 0, 0, 0.0); /*só pra saber onde esta as caixas de clique, altere opacidade*/
        width: 25vw;
        height: 15vh;
    }

    .click2 {
        width: auto;
    }

    .infantil {
        top: 21%;
        left: 8%;
    }

    .fundamental {
        top: 41%;
        left: 34%;
    }

    .cursinho {
        top: 57%;
        left: 60%;
    }

    .kameleon {
        top: 72%;
        left: 10%;
    }
}