﻿* {
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to right, #fffaf5, #f7ede2);
    /*background-color: antiquewhite;*/
}

nav {
    background-color: white;
    box-shadow: 3px 3px 5px rgba(0,0,0,0.1);
}

    nav ul {
        width: 100%;
        list-style: none;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    nav li {
        height: 50px;
    }

    nav a {
        height: 100%;
        padding: 0 30px;
        text-decoration: none;
        display: flex;
        color: rgb(240,100,33);
    }

/*
nav a:hover{
    background-color: green;
}
*/

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: antiquewhite;
    color: rgb(240,100,33);
    font-weight: bold;
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0,0,0,0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

    .sidebar li {
        width: 100%;
    }

    .sidebar a {
        width: 100%;
    }

.menu-button {
    display: none;
}

@media(max-width:800px) {
    .hideOnMobile {
        display: none;
    }

    .menu-button {
        display: block;
        width: 100%;
        background-color: antiquewhite;
    }
}

@media(max-width:400px) {
    .sidebar {
        width: 100%;
    }
}


/*.menubar {
    position: fixed;
    top: 0;
    left: -60%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 60%;
    height: 100vh;
    padding: 20% 0;
    background: rgba(255, 255, 255);
    transition: all 0.5s ease-in;
    z-index: 3;
}

.active {
    left: 0;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.menubar ul {
    padding: 0;
    list-style: none;
}

    .menubar ul li {
        margin-bottom: 32px;
    }

        .menubar ul li a {
            text-decoration: none;
            color: #000;
            font-size: 95%;
            font-weight: 400;
            padding: 5px 10px;
            border-radius: 5px;
        }

            .menubar ul li a:hover {
                background-color: #f5f5f5;
            }

@media screen and (max-width: 790px) {
    .hamburger {
        display: block;
    }

    nav ul {
        display: none;
    }
}*/
