.header {
    height: 60px;
    background-color: black;
    display: flex;
    justify-content: space-between;
    padding: 0px;
    margin: 0px;
}

.header * {
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    margin: 0px;
    padding: 0px;
    text-decoration: none;
    color: black;
}

.logoArea {
    height: 100%;
    display: flex;
}

.logo {
    margin-left: 10px;
    margin-right: 10px;
    height: 90%;
    align-self: flex-end;
}

.name {
    color: white;
    align-self: center;
}

.navigation {
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown {
    align-self: flex-start;
}

.navItem {
    width: 120px;
    line-height: 60px;
    color: white;
    background-color: black;
    text-align: center;
}

.dropdownButton {
    text-align: center;
    line-height: 60px;
}

.dropdownContent {
    display: none;
    flex-direction: column;
    border: 1px solid black;
}

.dropdownContent a {
    line-height: 35px;
    text-align: center;
    background-color: #222222;
    color: white;
}

.dropdown:hover .dropdownContent {
    display: flex;
}

.dropdown:hover .dropdownButton, .navItem:hover, .dropdownContent a:hover {
    font-weight: bold;
    color: skyblue;
}