*{
    margin: 0;
    padding: 0;
}
body {
    font-family: Arial, sans-serif;
    height: 100vh;
    background: var(--background);
    color: var(--text);
}
.contSuperior{
    background-color: var(--header);
    width: 100%;
    color: var(--colorWhite);
    height: 50%;
    position: relative;
    .titles{
    position: absolute;
    width: 100%;
        .txtIzquierda{
    padding: 10px 0px 0px 10px;
    top: -55px;
        }
        .txtDerecha{
    padding: 10px;
    position: absolute;
    right: 0;
    top: 4; 
        }
    }
}
.contInferior{
    /* background-color: rgb(255, 255, 255); */
    width: 100%;
    height: 30%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    .contMiembros{
    display: flex;
    justify-content: space-around;
    position: relative;
    top: -6rem;
        .cardMiembro{
    border: 1px solid var(--accent);
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    margin: 0 10px;
    width: 11rem;
    height: 16rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
            .imgMiembro
    img{
                
border-radius: 50%;
    width: 150px;
    height: 150px;
            }
            .btnContac{
    background-color: var(--accent);
    color: var(--text);
    padding: 0.6rem;
    font-size: 0.9rem;
    border-radius: 10px;
    border: none;
    text-align: center;
    }
            .btnContac:hover{
                transition: 0.5s;
    color: white;
    cursor: pointer;
            }
    }
    }
    .volver{
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: -4rem;
    padding-bottom: 10px;
        }
        .btnVolver{
    padding: 0.6rem;
    border-radius: 10px;
    font-size: 1.2rem;
    border: none;
    background-color: var(--accent);
    color: var(--text);
    text-align: center;
    }
        .btnVolver:hover{
            transition: 0.5s;
    color: white;
    cursor: pointer;
        }
}


@media (max-width: 700px) {
   .contInferior {
    .contMiembros {
        display: flex;
        position: relative;
        top: -15rem;
        flex-wrap: wrap;
        width: 100%;
        height: 100%;
        justify-content: center;
        flex-direction: row;
    }
    }
            .contInferior {
    & .contMiembros {
        .cardMiembro {
            border: 1px solid var(--accent);
            border-radius: 10px;
            text-align: center;
            padding: 11px;
            margin: 6px 10px;
            width: 5.01rem;
            height: 10rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
                }
    }
}
    .contInferior {
    & .contMiembros {
        & .cardMiembro {
            .imgMiembro img {
                border-radius: 50%;
                width: 60px;
                height: 60px;
                            }
        }
    }
}
}