@font-face {
    font-family: 'Plus Jakarta Sans Regular';
    src: url('/fonts/PlusJakartaSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Now Display';
    src: url('/fonts/HelveticaNowDisplay-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat Medium';
    src: url('/fonts/Montserrat-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat SemiBold';
    src: url('/fonts/Montserrat-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat Bold';
    src: url('/fonts/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

html {
    background-color: #fafafa;
}

body {
    margin: 0;
    padding-top: 3.6rem;
}

header { /* top bar*/
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 3.6rem;
    background-color: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

#logo {
    display: inline;
    height: 3.6rem;
    margin-left: 5px;
    /* margin: 5px; */
}

nav { /*top bar menu */
    display: inline-block;  
    margin: 5px 20px 5px 5px;
    font-family: 'Helvetica Now Display';
}

nav a {
    text-decoration: none;  
    color: #323232;
    font-size: 1.15rem;
    margin-right: 25px;
}

nav a:hover {
    color: #3361AC;
}


.dropbtn {
    display: none;
    border: none;
    margin-right: 10px;
    cursor: pointer;
    background-color: transparent;
}

.dropbtn > img {
    max-height: 35px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    right: 0;

}

.dropdown-content a {
    font-size: 18px;
    color: black;
    padding: 14px 16px;
    text-decoration: none;
    display: block;
    font-family: 'Helvetica Now Display';
}

/* .dropdown-content a:hover {background-color: cornflowerblue} */
.dropdown-content a:hover {color: cornflowerblue}

.dropdown:hover .dropdown-content {
    display: flex;
    flex-direction: column;
    /*gap: 10px;*/
}

.dropdown:hover .dropbtn {
    background-color: gainsboro;
}

@media screen and (max-width: 768px){ /* mobil */
    .dropbtn {
        display: inline;     
    }

    nav {
        display: none;
    }
}