@font-face {
    font-family: PrincipalLight;
    src: url("../../font/transfonter.org-unpack-20171107-123052/AvenirNextCondensed-UltraLight-11.ttf");
    
}
@font-face {
    font-family: PrincipalNormal;
    src: url("../../font/transfonter.org-unpack-20171107-123052/AvenirNextCondensed-Regular-08.ttf");
    
}
@font-face {
    font-family: PrincipalStrong;
    src: url("../../font/transfonter.org-unpack-20171107-123052/AvenirNextCondensed-Medium-06.ttf");
    
}
@font-face{
    font-family: futurista;
    src: url("../../font/space_age/space age.ttf");
}
@keyframes blur{
    from{
        filter: blur(3px);
    }
    to{
        filter: blur(0px);
    }
}
@keyframes opacity{
    from{
        opacity: 0.5;
        margin-left: -50%;
        margin-top: -50%;
    }
    to{
        opacity: 1;
        margin-left: 0%;
        margin-top:0%;
    }
}
body{
    padding: 0px;
    margin: 0px;
    font-family: PrincipalNormal;
}
.cabecera{
    width: 100%;
    height: 50px;
    -webkit-box-shadow: -3px 2px 48px 8px rgba(0,0,0,0.75);
    -moz-box-shadow: -3px 2px 48px 8px rgba(0,0,0,0.75);
    box-shadow: -3px 2px 48px 8px rgba(0,0,0,0.75);
    position: fixed;
    top: 0px;
    left: 0px;
    background-color: #000060;
    color: white;
    font-family: futurista;
    padding: 20px;
    z-index: 100;
}
.botonera a{
    text-decoration: none;
    color: white;
    margin-left: 40px;
    
}
.botonera a:hover{
    color: #a9a9a9;
}

.botonera{
    position: absolute;
    right: 100px;
    top: 40px;
    
}
.logo{
    position: absolute;
    top: -20px;
    left: 40px;
}
.imglogo{
    width: 200px;
}

.foot{
    font-family: PrincipalNormal;
    position: relative;
    background-color: #000060;
    width: 100%;
    color: white;
    text-align: center;
    padding-top: 22px;
    padding-bottom: 22px;
    position: fixed;
    bottom: 0px;
}
.foot p{
    display: inline;
}
.foot img{
    filter: invert(100%);
}
.foot a{
   text-decoration: none;
   color: white;
}
.acceso{
    position: absolute;
    right: 30px;
}
.contenido{
    padding: 160px;
    margin-bottom: 100px;
    position: absolute;
}
.foto{
    float: left;
    width: 350px;
    height: 350px;
    overflow: hidden;
    text-align: center;
    filter: blur(3px);
    background-color: #000060;
    
}
.miniatura{
    width: 1200px;
    opacity: 0.5;
    margin-left: -50%;
    margin-top: -50%;
}
.foto:hover{
    animation-name: blur;
    animation-duration: 1s;
    filter: blur(0px);
}
.miniatura:hover{
    animation-name: opacity;
    animation-duration: 1s;
    opacity: 1;
    margin-left: -0%;
    margin-top: -0%;
}
.detalle{
    position: fixed;
    z-index: 100;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    
    display: flex;
    align-items: center;
}
.imagendetalle{
    margin:auto;
}
.atras{
    margin-left: 160px;
    font-size: 60px;
    
    color: white;
}
.atras:hover{
    color: grey;
}
.alante{
    margin-right: 160px;
    font-size: 60px;
    
    color: white;
}
.alante:hover{
    color:grey;
}