@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@100&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: Noto;
    src: url(../fuentes/NotoSans-Regular.ttf);
}


.header{
    width: 100vw;
    height: 100vh;
    background-image: url(../imagenes/header.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.header>.head-1{
    height: 100%;
    width: 100%;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.774);
}

.ul-menu{
    background: transparent;
    text-align: center;
}



.ul-menu>li{
    list-style: none;
    filter: blur(0px);
    display: inline-block;
    font-family: 'Noto Sans', Noto;
    padding: 20px;
    font-size: 20px;
}

.ul-menu>li>a{
    color: #fff;
    text-decoration: none;
}

.ul-menu>li>a:hover{
    color: rgb(35, 78, 196);
    transition: all .4s;
}

.img-log{
    /* width: 100%;
    height: 100%; */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.img-log>img{
    width: 450px;
    height: auto;
    animation-delay: 5s;
    animation: rotacion 1s infinite ease;
    transition: all 3s;
}

@keyframes rotacion {
    50%{
        transform: rotate(360deg);
    }
    100%{
        transform: rotate(360deg);
    }
}
/* 
.img-log>img:hover{
    transform: rotate(-360deg);
    transition: all .4s ease;
} */

.btn-container{
    display: flex;
    justify-content: center;
}

.btn-container>.btn{
    padding: 10px;
    border-radius: 4px;
    background-color: #2471A3;
    text-decoration: none;
    font-size: 20px;
    color: #fff;
    font-family: 'Noto Sans', Noto;
}

.btn-container>.btn:hover{
    transform: translateY(-10px);
    color: rgb(241, 134, 143);
    transition: all 2s ease;
}