@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--bg-color);
}

a {
    text-decoration: none;
    color: var(--text-color);
}

h1 {
    font-size: 3vh;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1vh 2vh;
    background-color: #293b8e;
    color: white;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
}

nav a:hover {
    color: var(--hover-color);
    background-color: #eab557;
    color: black;
    padding: 1vh 1vh;
}



.background-video {
    position: fixed;
    width: 100%;
    height: 100%;
    object-fit: cover; /* This will ensure the video fills the space */
    object-position: center; /* Keeps the video centered */
}
 