body {
    font-family: 'Quicksand', sans-serif;
    margin: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
}
#body {
    width: 100%;
    flex-grow: 1;
    position: relative;
    overflow: clip;
}
#header {
    width: 100%;
    height: 120px;
    background-image: url("../data/upper_bar.jpg");
    background-position: center;
    overflow: visible;
    position: relative;
    top: 0px;
    filter: drop-shadow(8px 8px 12px black);
    z-index: 2000;
    margin-bottom: 5px;
}
#header_logo_link {
    width: auto;
    border-style: none;
}
#header_logo {
    width: 100px;
    height: 100px;
}
#header_links {
    width: 100%;
    height: 20px;
    background-color: rgba(0, 0, 0, 20%);
    display: flex;
    justify-content: flex-end;
}
.header_link {
    padding-right: 10px;
    padding-left: 10px;
}
.header_link a {
    color: white;
    text-decoration-line: none;
}
.flex_row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
/*
body {
    background-image: url("../data/background.jpg");
    background-size: cover;
}
*/