/* GERAL*/
.tela{
    width: 40%;
    height: 90vh;
    margin-top: 20px;
    background-color: #2c2c2c;
    border: 2px solid white;
    border-radius: 12px;
}

body{
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

a{
    text-decoration: none;
    color: white;
}
/*ARQUIVO*/
.add{
    position: relative;
    top: 100px;
    left: 40px;
}

.botao{
    position: relative;
    top: 0px;
    font-size: 30px;
    text-decoration: underline;
    cursor: pointer;
}

/*NOME DO ARQUIVO*/
.personalizar{
    position: relative;
    top: 150px;
    margin-left: 40px;
}

.personalizar input{
    justify-content: center;
    align-items: center;
    padding: 10px;
    border-radius: 20px;
    /*imagem no texto*/
    background: url("https://cdn-icons-png.flaticon.com/512/6802/6802306.png") no-repeat 10px center ;
    background-size: 40px;
    padding-left: 90px; /* espaço para o texto não ficar em cima da imagem */
    height: 35px;
    border-radius: 5px;
    border: 2px solid white;
    font-size: 16px;
    color: white;
}




/* SALVAR E EXCLUIR*/
.caixa{
    background-color: #2c2c2c;
    display: flex;
    flex-direction: row;
    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;
}

.bloco p {
    margin-top: -2px;
}
.bloco{
    margin-top: 20px;
}
.bloco i{
    margin-left: 20px;
}

@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;
        font-size: 40px;
    }
    .botao{
        font-size: 40px;
    }
    .personalizar input{
        width: 40%;
        height: 70px;
        font-size: 20px;
        margin-top: 20px;
    }
    .personalizar h1{
        font-size: 40px;
        margin-top: 20px;
    }
    /* NAVEGAÇÃO */
    .caixa{
    display: flex;
    justify-content: space-around;
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    color: white;
    border: 2px solid white;
    height: 15%;
    width: 100%;
    font-size: 30px;
}   
    .bloco{
        margin-left: -20px;
        margin-top: 20px;
    }
    .bloco i{
        margin-left: 25px;
    }
}