.header{
    height: 10vh;

    display: flex;
    flex-direction: row;
    justify-content: space-between;

    position: fixed; /*doesnt move when you scroll*/
    top: 0;
    left: 0;
    right: 0;
    background-color: #19171b;
    z-index: 100; /*set to infront all other elements*/

    /*Shadow*/
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

body{
    background-color: #19171b;
}

/* LEFT SECTION CONTAINS LOGO */
.left-section{
    display: flex;
    align-items: center;
}

.logo{
    padding-left: 5vh;
    padding-right: 3vh;
    height: 5vh;
    flex-shrink: 0;
}

.menu-buttons{
    background-color: #19171b;
    color: #92d0c3;
    cursor: pointer;
    margin-left: 10px;
    font-family: 'Sora', sans-serif;
    font-weight: 400;
    font-size: 16px;
    padding-right: 10px;
    padding-left: 10px;
    text-decoration: none;
    justify-content: space-between;

    /*border-style: solid;*/
}

.menu-buttons:hover{
    color: rgb(203, 213, 213);
}

/* RIGHT SECTION CONTAINS SOMETING*/
.right-section{
    /*border-style: solid;*/
    width: 20px;
    margin-right: 20px;
    
}