
body{
    margin: 0;
    padding: 0;
    background-color: var(--gris_claro);
}

#todo{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 64px;
}

#contModalImg{
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 20;
    background-color: rgba(0, 0, 0, 0.6);
}

#modalImg{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    height: auto;
    padding: 2rem 0;
    width: 60%;
    background-color: var(--blanco);
    border-radius: 5px;
}

.imgOpt{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: darkgray;
    font-weight: 600;
    height: 200px;
    width: 200px;
    border: 2px solid darkgray;
    border-radius: 50%;
    user-select: none;
}

.imgOpt:hover{
    cursor: pointer;
    color: var(--amarillo);
    border-color: var(--amarillo);
}

.imgOpt i{
    font-size: 2rem;
}

#imgCircle{
    position: relative;
    margin-top: 162px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 2rem;
    height: 200px;
    width: 200px;
    border-radius: 50%;
    background-color: var(--azul);
    border: 1px solid darkgray;
    background-size: cover;
    background-position: center;
}

#circlePencil{
    position: absolute;
    background-color: var(--amarillo);
    color: var(--azul);
    font-size: 1.4rem;
    border: none;
    border: 2px solid var(--amarillo);
    height: 60px;
    width: 60px;
    top: 0;
    right: 0;
    border-radius: 50%;
    transition: all 0.3s;
}

#circlePencil:hover{
    cursor: pointer;
    background-color: var(--azul);
    color: var(--amarillo);
}

.title{
    color: var(--azul);
    width: 50%;
    margin: 0;
    margin-top: 32px;
}

.subTitle{
    color: var(--azul);
    width: 50%;
    margin: 0;
    margin-top: 32px;
    font-weight: 600;
}

.lblPass{
    display: none;
    color: red;
    font-size: 0.9rem;
    width: 50%;
    margin-top: 28px;
    margin-bottom: -28px;
}

.imp{
    margin-top: 32px;
    height: 30px;
    width: 50%;
    border-radius: 3px;
    border: 1px solid darkgrey;
    text-indent: 12px;
    font-size: 0.9rem;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
}

.btn{
    width: 50%;
    margin-top: 32px;
}

@media(max-width:808px){
    #imgCircle{
        margin-top: 32px;
    }
    #todo{
        margin-bottom: 96px;
    }
    .imp, .title, .subTitle, .btn, .lblPass{
        width: 85%;
    }
    .title{
        font-size: 1.3rem;
    }
    #modalImg{
        width: 95%;
    }
    .imgOpt{
        height: 150px;
        width: 150px;
        font-size: 0.9rem;
    }
}