body {
    font-family: Roboto, sans-serif !important;
    border: none;
    margin: 0;
}

*, ::after, ::before {
    box-sizing: unset !important;
}


.header-logo {
    display: inline-block;
    height: 2rem;
    margin: 1rem;
}

.header-text {
    display: inline-block;
    margin: 1.4rem 1rem;
    font-size: 1.2rem;
    color: white;
    font-weight: bold;
}

#header-menu {
    display: inline-block;
    margin: 1.4rem 0.5rem;
    font-size: 1rem;

}

#logout {
    float: right;
    font-size: 0.8rem;
    color: white;
    margin: 0.5rem !important;
}

a, a:hover {
    text-decoration: none;
}

.header-anchors {
    color: white;
    padding: 1rem;
}


#header {
    display: block;
    width: 100%;
    background: black;
    height: 4rem;
}

button {
    margin: 1rem auto;
    min-width: 12rem;
    display: block;
    font-size: 1rem !important;
    line-height: 1.5 !important;
    background: black;
    border-radius: 3rem;
    color: white;
    border: none;
    font-weight: bold !important;
    padding: 1rem;
}

.header-anchors {
    color: white;
    text-decoration: none;
}

.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;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1
}

.dropdown:hover .dropdown-content {
    display: block;
}