

/*  ESPECIFICAÇÕES GERAIS*/
body{
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tela{
    width: 40%;
    height: 90vh;
    margin-top: 20px;
    background-color: #2c2c2c;
    border: 2px solid white;
    border-radius: 12px;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /*GRID FAZ COM QUE OS BLOCOS FICAM LADO A LADO*/
    grid-template-rows: repeat(4, 1fr);
    border-bottom: 2px solid #333;
    text-align: center;
}

/*BLOCOS DE ARQUIVOS E PASTAS*/

.blocos{
    background-color: #2b2b2b;
    color: white;
    border: 2px solid white;
    border-radius: 12px;
    padding: 10%;
    font-size: 30px;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s;
    transition-duration: 0.6;
}
.blocos: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);
    cursor: pointer;
    transform: translate(-5px, -5px);
    transition: background-color 0.3ms, transform 0.3s ease;
}
.blocos i{
    font-size: 50px;
    margin-bottom: 10px;
}

/* VOLTAR E HOME */
.hall{
    background-color: #3a3a3a;
    display: flex;
    justify-content: space-around;
    position: fixed;
    bottom: 30px;
    margin-left: -2px;
    color: white;
    border: 2px solid white;
    height: 90px;
    width: calc(40% - 6px);
    font-size: 25px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}
.guia{
    margin-top: 10px;
    transition: transform 0.4s ease, background-color 0.3s ease;
    transition-duration: 0.6s;
}
.guia i{   
    margin-top: 10px;
}
.guia p{
    margin-top: -5px;
}
.guia:hover{
    transform: scale(1.2);
    cursor: pointer;
}
.corrigir:hover{
    color: #27ae60;
}

a{
    text-decoration: none;
    color: white;
}



/*-----------------------------------------------------------------------------------------*/



/*PASTA 1*/
.textop1{
    justify-content: center;
    align-items: center;
    color: white;
    margin-left: 50px;
}



/*-----------------------------------------------------------------------------------------------------------*/


/* SALVAR E EXCLUIR*/
.caixa{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    position: fixed;
    bottom: 30px;
    color: white;
    border: 2px solid white;
    height: 70px;
    width: 403px;
    font-size: 25px;
}

.blocos{
    cursor: pointer;
}

/* 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;
    }
   
    .blocos{
        border-top: none;
    }
    /* PASTA 1*/
    .Modelo, .planilha{
        border-left: none;
    }
    .Aluno{
        border-right: none;
    }
    /* PASTA */
    .criar{
        border-left: none;
    }
    .pasta{
        border-right: none;
    }
    .hall{
    display: flex;
    justify-content: space-around;
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    color: white;
    border: 2px solid white;
    border-left: none;
    border-bottom: none;
    border-right: none;
    height: 15%;
    width: 100%;
    font-size: 30px;
}   
    .guia{
        margin-left: -20px;
        margin-top: 10px;
    }
    
}