* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Roboto;
}


header {
    top: 0;
    position: sticky;
    width: 100%;
}

nav {
    width: 100%;
    background-color: rgba(255, 166, 0, 0.609);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

nav #navbar {
    width: 30%;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav #navbar li {
    list-style: none;
}

nav #navbar li a {
    font-size: 20px;
    color: black;
    text-decoration: none;
}

nav #navbar li a:hover {
    text-decoration: underline;
}

/*sidebar*/
#sidebar {
    display: none;
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: rgba(255, 166, 0, 0.609);
}

#sidebar li {
    margin-bottom: 10px;
    list-style: none;
}

#sidebar a {
    color: black;
    text-decoration: none;
}

.burger {
    width: 30px;
    height: 100%;
    display: none;
}

.line {
    margin-top: 7px;
    width: 100%;
    height: 4px;
    border-radius: 3px;
    background-color: white;
}