@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

/*Estilos Generales*/

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 20px;
}

body, html {
    background-color: #96b1c5;
    margin: 0;
    height: 0;
    scroll-behavior: initial;
}

/*Header*/

.header {
    background: rgba(11, 48, 76, 0.7);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    padding: 0 ;
    width: 100%;
}

/*Logo*/


.mover {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    margin-right: auto;
}

/*Menu de navegación*/

.header .nav-links {
    list-style: none;
}

.header .nav-links li {
    display: inline-block;
    padding:  20px;
}

/*Efectos en los links*/

.header .nav-links li:hover {
    transform: scale(1.1);
}

.header .nav-links a {
    font-size: 700;
    color: aliceblue;
    text-decoration: none;
}

.header .nav-links li:hover {
color: blue;
}

/*Botón de Registro*/

.btn button {
    font-weight: 700;
    color: #587d9a;
    padding: 10px 25px;
    background-color:#D9D9D9;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease 0;
    margin: 10px;

}

/*Efecto para el botón*/

.header .btn button:hover {
    background-color: #345269;
    color: #7d8089;
}

/*Fondo*/

.video-fondo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
}

.video-fondo video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content h3 {
    font-size: 150px;
     letter-spacing: 10px;
    font-family: "Great Vibes", sans-serif;
}

.content p {
    font-family: 'Times New Roman', Times, serif;
    font-size: 30px;
}

.content {
    position: relative;
    z-index: 1; /* El texto queda sobre el video */
    color: rgba(238, 237, 237, 0.837);
    padding: 20px;
    text-align: center;
}

.btn-inicio button{
     font-weight: 700;
    color: #587d9a;
    padding: 10PX 25px;
    background-color:#D9D9D9;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease 0;
}

.btn-inicio button:hover { /*Animacion del boton a la hora de pasar el cursor*/
     background-color: #345269;
    color: #7d8089;
}

.footer {
    background: rgba(11, 48, 76, 0.7);
    color: #ffffff84;
    text-align: center;
    position: fixed;
    width: 100%;
    bottom: 0;
}




