﻿.navbar {
    width: 100vw;
    display: flex;
    height: auto;
    margin-bottom: 30px;
    color: var(--yellow-300);
    padding: 20px 20px;
    align-items: center;
    transition-duration: 0.3s;
}
#burger-icon{
    opacity: 0;
}
.navbar-logo {
    background-image: url('../Images/logo-yellow.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 60px;
    height: 60px;
    margin-right: 20px;
}
.navbar-title {
    display: flex;
    font-size: 2.4em;
    font-weight: bold;
    align-items: center;
}
.navbar-items {
    display: flex;
    margin-right: 15px;
    font-size: 1.2em;
    opacity: 1;
    transition: 1s;
}
@media (max-width: 1200px) and (min-width: 801px){
    .navbar {
        justify-content: center;
    }
    .navbar-title{
        margin-bottom: 30px;
    }
    .navbar-items{
        opacity: 1;
    }
}
@media (max-width: 800px){
    #burger-icon {
        opacity: 1;
    }
    .navbar{
        flex-direction: column;
        background-color: var(--yellow-300);
        top: 0;
        padding: 10px;
        margin-bottom: 10px;
    }
    .navbar-logo{
        background-image: url("../Images/logo.png");
        width: 50px;
        height: 50px;
    }
    .navbar-title-text {
        display: none;
        opacity: 0;
    }
    .navbar-items > .navbar-item > a{
        color: black !important;
    }
    .navbar-items {
        flex-direction: column;
        font-size: 2em;
        align-self: flex-start;
        max-height: 0;
        opacity: 0;
        pointer-events: none;
    }
    .navbar-item{
        margin-top: 10px !important;
        border-width: 0 0 0 2px;
        border-color: black;
        border-style: solid;
        padding-left: 10px;
    }
    .content{
        margin-top: 150px;
    }
}

.navbar-item {
    margin: 0 15px;
}

.navbar-items > .navbar-item > a {
    text-decoration: none;
    color: white;
}