/* expecificaçoes gerais */
body{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 20px;
}
a{
    text-decoration: none;
    color: white;
}

/* CAIXA PRINCIPAL*/
.tela{
    margin-top: 20px;
    background-color: #2c2c2c;
    color: white;
    display: flex;
    width: 40%;
    border: 3px solid white;
    border-radius: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    gap: 10px;
}

.tela img{
    width: 10em;
}
.tela h1{
    margin-top: -10px;
    margin-bottom: 10px;
}

/* CAIXAS SECUNDARIAS */
.caixa{
    border: 2px solid white;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 40px;
    padding-right: 40px;
    margin: 5px;
    transition: transform 0.3s;
}
.k2{
    padding-left: 50px;
    padding-right: 50px;
}

.caixa:hover{
     background: linear-gradient(120deg, rgb(61, 59, 59), rgba(0, 0, 0, 0.575));
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.637);
    transform: scale(1.2)
}

.icones{
    font-size: 40px;
    position: relative;
    top: 10px;
}
.icones2{
    font-size: 40px;
    position: relative;
    top: 10px;
}

/* RESPONSIVIDADE */

@media screen and (max-width: 1200px) {
     /* RESPONSIVIDADES GERAIS */
    body{
        background-color: #2c2c2c;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .tela{
        width: 100%;
        height: 100%;
        margin: 0;
        border-radius: 0;
        border: none;
    }
    /* IMAGEM E TEXTOS */
    .tela img{
        width: 10em;
    }
    .tela h1{
        font-size: 40px;
        margin-top: -20px;
        margin-bottom: 20px;
    }
    /* CAIXAS */
    .caixa{
        width: 100px;
        height: 170px;
        font-size: 30px;
        margin-top: 10px;
    }
    .k1{
        padding-left: 50px;
        padding-right: 50px;
    }
    .caixa i{
        font-size: 60px;
        margin-top: 20px;
    }

}