html, body { 
    margin: 0; 
    font-family: 'Poppins', sans-serif;
}

body::-webkit-scrollbar {
    display: none;
}

header {
    height: clamp(60px, 10vh, 100px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1em;
    background-color: #2f3a9b;
}

.navlinks a {
    color: white;
    text-decoration: none;
    margin: 0 1em;
}

.navlinks a.active { 
    font-weight: bold; 
}

.logo-img {
    height: 50px; width: auto; 
}

.navtoggle {
    display: none;
    background-color: transparent;
    color: white;
    border: none;
    font-size: 30px;
    cursor: pointer;
    z-index: 1;
}
/* ----- IF SCREEN SIZE IS SMALL -----*/
    @media (max-width: 800px) {
        .navlinks {
            display: none;
            flex-direction: column;
            position: fixed;
            right: 0px;
            top: 0;
            height: 100%;
            width: 40vw;
            background-color: #92bfe9;
            padding-top: 120px;
            transition: 0.3s;
            z-index: 3000;
            align-items: center;
        }
        .navlinks a {
            margin: 0;
            color: #285680;
            margin-top: 30px;
        }
        .navtoggle {
            display: block;
        }
    }
    .navlinks.show{
        display: flex;
        
    }