@media only screen and (min-width: 1000px) {
    .navbar {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100px;
        background-color: var(--brandColour);
        z-index: 3;
    }
    
    .navbar-menubutton {
        display: none;
    }
    
    .navbar-logo {
        height: 70px;
        margin: 15px 50px;
        display: inline-block;
        cursor: pointer;
        background-image: url("/static/logos/white.png");
        background-size: cover;
        aspect-ratio: 2.22/1;
    }

    .navbar-menu {
        display: inline-block;
        width: auto;
        height: 40px;
        vertical-align: top;
        margin: 30px 0px;
    }
    
    .navbar-menu-item:first-child {
        margin-left: 0px;
    }
    
    .navbar-menu-item {
        line-height: 40px;
        font-size: 20px;
        height: 40px;
        color: white;
        text-decoration: none;
        font-weight: 600;
        margin-left: 15px;
        vertical-align: top;
    }
    
    .navbar-buttons {
        position: absolute;
        top: 35px;
        height: 30px;
        right: 50px;
    }
    
    .navbar-buttons-item {
        line-height: 30px;
        height: 30px;
        font-size: 27.5px;
        color: white;
        text-decoration: none;
        margin-left: 20px;
    }
}

@media only screen and (max-width: 1000px) {
    .navbar {
        position: fixed;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 80px;
        background-color: var(--brandColour);
        z-index: 3;
    }
    
    .navbar-menubutton {
        display: inline-block;
        font-size: 30px;
        line-height: 30px;
        height: 30px;
        width: 30px;
        text-align: center;
        margin: 25px;
        color: white;
        vertical-align: top;
    }
    
    .navbar-logo {
        height: 50px;
        margin: 15px 0px;
        display: inline-block;
        background-image: url("/static/logos/white.png");
        background-size: cover;
        aspect-ratio: 2.22/1;
        cursor: pointer;
        vertical-align: top;
    }
    
    .navbar-menu {
        position: absolute;
        top: 80px;
        left: 0px;
        width: calc(100% - 50px);
        padding: 25px;
        background-color: white;
        height: calc(100vh - 80px);
        display: none;
    }
    
    .navbar-menu-item:first-child {
        margin-left: 0px;
    }
    
    .navbar-menu-item {
        line-height: 25px;
        font-size: 25px;
        height: 25px;
        color: black;
        text-decoration: none;
        font-weight: 600;
        display: block;
        margin-bottom: 15px;
    }
    
    .navbar-buttons {
        display: none;
    }
}