@font-face {
    font-family: 'CaviarDreams';
    src: url(/Fuentes/caviar_dreams/CaviarDreams.ttf);
}
*{
    margin: 0;
    padding: 0;
}
html, body{
    height: 100%;
}
body{
    background-image: linear-gradient(180deg, #e4f4fd, #95d3f7);
    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-template-areas:    "Header"
                            "Main"
                            "Footer";
    box-sizing: border-box;
    font-family: CaviarDreams;
}
header{
    grid-area: Header;
    height: 220px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    min-height: 300px;
    font-weight: bold;
}
header img{
    position: absolute;
    top: 5%;
    height: 17%;
    animation-name: Entrada-img;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}
.Titulo{
    position: absolute;
    left: 13%;
    color: black;
    font-size: 25px;
    animation-name: Entrada-Titulo;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}
.Titulo2{
    position: absolute;
    left: 13%;
    color: black;
    font-size: 25px;
    animation-name: Entrada-Titulo2;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}
#Listado{
    text-align: center;
    position: absolute;
    width: 24%;
    top: 25%;
    animation-name: Entrada-Lista;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    font-size: 20px;
}
#Listado ul{
    list-style-type: none;
    display: flex;
}
.Header-Botones{
    text-decoration: none;
    color: black;
    padding: 10px;
    border-radius: 20px;
}
.Header-Botones:hover{
    transition-duration: 0.5s;
    font-size: 22px;
    background-color: #9edbff;
}
#BotonFormulario{
    position: absolute;
    top: 95px;
    left: 77%;
    width: 8%;
    height: 8%;
    text-align: center;
    background-color: #c9e9fc;
    border-radius: 20px;
    border: none;
    font-size: 16px;
    animation-name: INICIARSESION;
    animation-duration: 1s;
    cursor: pointer;
    background-color: #9edbff;
}
#BotonFormulario:hover{
    background-color: #95d3f7;
}
#BarraBusqueda{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: -20px;
    right: 500px;
    animation-name: Barra;
    animation-duration: 1s;
}
#InputBarra{
    width: 70%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    height: 35px;
}
#BotonBarra{
    padding: 18px 20px;
    margin-left: 10px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}
#BotonBarra:hover {
    background-color: #0056b3;
}

main{
    grid-area: Main;
}
footer{
    grid-area: Footer;
    display: flex;
    justify-content: center;
    font-weight: bold;
}
footer div{
    margin: 3%;
    color: black;
    font-size: 20px;
}
footer div a{
    text-decoration: none;
    color: black;
}
footer div a:hover{
    color: grey;
}   
@keyframes Entrada-img {
    0%{
        left: -300px;
    }
    100%{
        left: 4%;
    }
}
@keyframes Entrada-Titulo {
    0%{
        top: -300px;
    }
    100%{
        top: 11%;
    }
}
@keyframes Entrada-Titulo2 {
    0%{
        top: -30px;
    }
    100%{
        top: 15%;
    }
}
@keyframes Entrada-Lista {
    0%{
        left: -300px;
    }
    100%{
        left: 4%;
    }
}
@keyframes INICIARSESION {
    0%{
        top: -300px;
    }
    100%{
        top: 95px;
        left: 77%;
    }
}
@keyframes Barra {
    0%{
        top: -300px;
    }
    100%{
        top: -20px;
    }
}