body {
    margin: 0;
    padding: 0;
    height: 100vh;  
    background-size: cover;
    background-image: url('../media/images/CabeceraMparua.png');
    background-attachment: fixed;
    
}
.parent {
    display: flex;   
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 90vh;
}

.nombre, .motivo {
    text-align: center;
    width: 100%;
    color: aliceblue;
    display: block;
    flex: 1;
}
.nombre {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    padding-top: 8%;
    color: beige;
    font-size: 3.6em;
}
.motivo {
    font-family: monospace;
    font-size: 1.13em;
}
.menu {
    display: flex;
    justify-content: space-between;
    height: 40vh;
    background-color: rgba(255, 255, 255, 0.34);
    margin: 0px 0px 55px 0px;
    border-radius: 10px;
    border: 3px solid white;/*rgba(170, 170, 170, 0.747);*/
    box-shadow: 6px 6px 10px rgba(170, 170, 170, 0.747);
    text-align: center;
    padding:20px;
    align-items: center;
}
.menu .blqIcono{
    display: flex;
    flex-direction: row;  
    margin: 20px;
    align-items: center;
    padding: 25px 10px 25px 10px;
    background-color: rgba(37, 37, 39, 0.616);
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.747);
    border-radius: 20px;
    color: white;
    cursor: pointer;
}
.menu .blqIcono .thumb {
    width: 180px;
    height: 120px;
    transition: transform 0.5s ease;
    border-radius: 10px;

}
.menu .blqIcono .thumb:hover {
    transform: scale(1.5);
    opacity: 80%;
    cursor: pointer;
}
.menu .blqIcono .desc { 
    transition: transform 0.5s ease;
    width:190px;
    height: 120px;
    text-wrap-mode: wrap;
    text-wrap-style: pretty;
    padding: 0px 6px 0px 6px;
    vertical-align: middle;
    font-size: 1.12em;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}


.cMail {
    color: beige;
    font-size: 2.5em;
    transition: transform 0.5s ease;

}
.cMail:hover {
    font-weight: bold;
    cursor: pointer;
    transform: scale(1.5);
    color: white;
}
#intro a {
    text-decoration: none;
    color: white;
    font-size: 0.8em;
}
#intro a:hover {
    font-weight: bold;
    cursor: pointer;
}
.correo {
    text-decoration: none;
    color: white;
    font-size: 1.5em;
}
.correo:hover {
    font-weight: bold;
    cursor: pointer;
}

.popupBG{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(37, 37, 39, 0.616);
    padding: 20px;
    border-radius: 10px;
    z-index: 1001;
    display: none;
    border: 1px solid white;
    box-shadow: 6px 6px 10px rgba(170, 170, 170, 0.747);

}
.descripcion {
    display: block;
    text-align: center;
    font-size: 1.5em;
    color: white;
    margin: 10px;
}

.popupButton {
    display: block;
    margin: 10px auto;
    padding: 10px;
    background-color: rgba(41, 41, 41, 0.281);
    border-radius: 10px;
    color: white;
    font-size: 1.1em;
    cursor: pointer;
}
.popupButton:hover {
    border-radius: 50px;
    background-color: rgba(41, 41, 41, 0.616);
}





@media only screen and (max-width: 600px) {
    .nombre {margin-top:10px;}
    .motivo {margin-bottom:10px;}
    .menu {display: block; width: 80%;height:auto;margin:0px;box-shadow: 0px 0px 0px rgba(170, 170, 170, 0.747);}
    .menu .blqIcono {font-size:12px;display: inline-block;width: auto; height: auto;margin:0px;border-radius: 0px;border-bottom: 1px solid grey;}
    .menu .blqIcono .thumb, .menu .blqIcono .desc {display: inline-block;}
    .menu .blqIcono .desc{height: 50px;padding-top: 10px;}
    .menu .blqIcono .thumb {height: 100px;width: 150px;}
    .parent {height: 100vh;}
}