body{
    font-size: 1rem;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-right: 1px solid rgb(168, 167, 167);
    background-image: url("../images/fondo.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

#titulo{
    font-size: 3rem;
    text-shadow: 2px  2px  10px black;
}

#titulo_h2{
    color: white;
    font-size: 1.5rem;
    text-shadow: 2px  2px  10px black;
}

.titulo_sec{
    color: white;
    font-size: 1rem;
    text-shadow: 2px  2px  10px black;
}

header{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    width: 100%;
    background-color:rgb(86, 86, 88, 0.8);
    color: white; 
    min-height: 100px;   
}

.img_head{
    width: 170px; /*x1.7 el alto*/
    height: 100px;
    padding: 10px;
}

nav{
    padding: 5px;
    background-color: rgba(86, 86, 88, 0.4);
}

nav ul{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    list-style: none;
    justify-content: flex-end;
    padding: 0;
    margin: 10px 0px;
}

nav ul li a{
    min-width: 150px;
    text-decoration: none;
    color: aqua;
    text-align: center;
    text-shadow: 2px  2px  10px black;
    padding:10px;
    display: block;
    background-color: rgba(86, 86, 88, 0.75);
    border-radius: 15px;
}

nav ul li a:hover, .seleccionado{
    border-radius: 15px;
    box-shadow: 3px  3px  10px black;
}

footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    background-color: rgba(86, 86, 88, 0.4);
    color: white;
    padding: 30px 0;
}

#redes{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.img_red{
    width: 40px;
    height: 40px;
    padding: 10px;
}

#pie{
    font-size: 1.5rem;
    color: white;
    text-shadow: 1px  1px  2px red;
}

.swal-footer {
    background-color: rgb(211, 232, 246);
    margin-top: 32px;
    border-top: 1px solid #E9EEF1;
    overflow: hidden;
}

.swal-title {
    margin: 0px;
    font-size: 32px;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.21);
    margin-bottom: 28px;
}

.swal-text {
    text-align: center;
}

@media screen and (max-width: 700px){
/* 
    body{
        background-size: 160% 100%;
    } */

    header{
            flex-direction:column;
    }

    nav ul{
            flex-direction:column;
        }
       
    }