
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    width: 100%;
}

header{
    color: white;
}

div.logo{
    background: #659cef;
    color: white;
    text-align: center;
    height: 100px;
}

.logo a{
    text-decoration: none;
    color: white;
    font-size: 1.3em;
}

.logo a i{
    font-size: 1.7em;
    line-height: 100px;
    color: red;
    text-align: center;
}

abbr{
    display:inline-block;
    position: relative;
}

abbr[title]:hover:after{
    content:attr(title);
    position: absolute;
    color: black;
    font-size: 1.5em;
    background: greenyellow;
    top: 35px;
    left: 0;
}

.menu {
    background: #659cef;
    border-top: solid 2px #73C2FB;
    min-height: 35px;
    color: white;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

nav.menu a{
    color: white;
    padding-right: 6px;
    padding-left: 6px;
    line-height: 33px;
    text-decoration: none;

}

.menu a {
    padding-left: 40px;
}

.menu i{
    padding-right: 1.2px;
    padding-left: 1.2px;
}


/* .off{
    display: none;
} */

.activo{
    background: #c4c4f3;
    color: coral;
    border-radius: 5px;

}

.container{
    background: url(imagenes/fondo.jpg) no-repeat;
    background-size: 100% 80%;
    width: 100%;
    height: 100vh;
}

.container::before{
    content: "";
    width: 100%;
    height: 100%;
	background-color:rgba(0,0,100, 0.5);
	position: absolute;
}

.container .titulo2{
    position:  relative;
}

p.titulo2{
padding-top: 60%;
font-size: 3em;

}

.footer{
    background: #659cef;
    width: 100%;
    min-height: 60px;
    text-align: center;
    position: fixed;
    bottom: 0;
}

.footer a{
    line-height: 60px;
    text-align: center;
    text-decoration: none;
    font-size: 1em;
}

.icono {
    width: 15px;
    height: 15px;
}