body {
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

.fotoPerfil {
    width: 20vh;
    height: 20vh;
    background-image: url("images/logo.png");
    border-radius: 100%;
    margin: 0 auto;
    display: block;
    background-size: 140%;
    background-position: center;
    box-shadow: 1px 1px 20px 0 #333;
    margin-top: 4vh;
}

.logo  {
    filter: drop-shadow(2px 2px 3px #555);
    margin: auto;
    display: block;
    margin-top: 5vh;
    width: 30vh;
}

.titulo {
    font-family: sans-serif;
    font-weight: 500;
    font-size: 3.5vh;
    margin-top: 2vh;
    margin-bottom: 0;
    text-align: center;    
}

.subtitulo {
    font-family: sans-serif;
    font-weight: 300;
    font-size: 2vh;
    margin-top: 1vh;
    text-align: center;    
}

.boton {
    display: block;
    width: 85%;
    text-decoration: none;
    text-align: center;
    color: #348cd4;
    font-size: 2.2vh;
    font-weight: bold;
    margin: auto;
    margin-top: 4vh;
    padding: 1.5vh;
    padding-top: 2vh;
    padding-bottom: 2vh;
    
    border: 0.3vh solid #48a;
    border-radius: 10px;
}

.botones {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3vh;
    margin-left: 3vh;
    margin-right: 3vh;
}

.fila {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin-bottom: 0;
}

.boton-contenedor {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 30%; /* Ajusta el tamaño del contenedor del botón */
    margin: 0.5vh; /* Añade un margen para el espaciado */
    text-decoration: none;
}

.icono {
    margin-top: 2vh;
    width: 6.5vh;
    height: 6.5vh;
    border-radius: 100%;
}

.subtitulo-boton {
    margin-top: 1vh;
    font-size: 1.8vh;
    font-weight: 300;
    color: #379;
}

/* El popup (oculto por defecto) */
.popup {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

/* Contenido del popup */
.popup-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

/* El botón de cerrar */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}