* {
    margin: 0;
    padding: 0;
    font-family: 'open sans', 'segoe ui';
    box-sizing: border-box;
}

/* NAVBAR */
#navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 15vh;
    max-width: 100vw;
    color: white;
    /* background-color: rgb(27, 46, 167); */
    background-color: rgba(0, 0, 0, 1);
}

#navbar h1 {
    /* color: rgb(255, 115, 0); */
    /* background-image: linear-gradient(to bottom right, rgb(255, 140, 0) 30%,  rgb(255, 255, 255), green 90%);
    background-clip: text;
    color: transparent; */
    font-weight: 300;
}

#navbar ul {
    display: flex;
}

#navbar li {
    list-style: none;
    padding: 0.6rem 1rem;
}

#navbar a {
    text-decoration: none;
    font-size: 1.2rem;
    color: rgba(255, 255, 255);
    border-radius: 16px;
    border: 1px solid transparent;
    font-weight: 300;
}

#navbar a#current-tab {
    color: rgb(200, 255, 0);
    /* font-weight: 500; */
}

#navbar a::before {
    margin-left: auto;
}

#navbar a::after,
#navbar a::before {
    content: '';
    width: 0%;
    height: 3px;
    background: #f00505;
    display: block;
    transition: 0.5s;
}

#navbar a:hover::after {
    width: 100%;
}


/* FOOTER */
#footer {
    background-color: #121212;
    color: white;
    padding: 1rem 1vh;
    text-align: center;
    font-size: 0.9rem;
}
