@font-face {
    font-family: 'Montserrat';
    src: url('/fonts/Montserrat.ttf') format('truetype');
}

:root {
    --main-color: #D4E3CB;
    --second-color: #667C66;
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat';
}

body {
    background-color: black;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}

.container {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.navbar {
    top: 0;
    left: 0;
    right: 0;
    position: fixed;
    display: flex;
    align-items: center;
}

.logo {
    width: 80px;
    cursor: pointer;
    margin: 30px 30px;
}

.menu-icon {
    width: 25px;
    cursor: pointer;
    margin-right: 30px;
    display: none;
}

nav {
    flex: 1;
    text-align: right;
}

nav ul li {
    list-style: none;
    display: inline-block;
    margin-right: 30px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 20px;
    transition: 0.5s ease;
}

nav ul li a:hover {
    color: var(--main-color);
}

.active a {
    color: var(--main-color);
}

.bordered a {
    color: var(--second-color);
}

.navbar {
    transition: 0.5s ease;
}

.change-background {
    background-color: rgba(0, 0, 0, 0.75);
}

@media only screen and (max-width:700px) {
    
    nav ul {
        width: 100%;
        position: absolute;
        top: 120px;
        right: 0;
        z-index: 2;
    }

    nav ul li {
        display: block;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .menu-icon {
        display: block;
    }

    #menuList {
        overflow: hidden;
        background-image: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)), url(/media/bg2.jpg);
        transition: 0.5s ease;
    }
}