body {
    background-color: #000000;
    margin: 0;
    height: fit-content;
    font-family: Calibri;
}

#header {
    position: relative;
    background-color: #000000;
    display: flex;
    flex-direction: row;
    padding-left: 20%;
    padding-top: 0;
    left: 0;
    height: 100px;
}

#header div {
    position: relative;
    top: 10%;
    height: 80%;
}

#header div img {
    position: relative;
    height: 100%;
}

#header #title {
    position: relative;
    color: #FFFFFF;
    margin: 0;
    left: 3%;
}

#header #title h1 {
    margin: 5% 0% 0% 0%;
}

#menu {
    background-color: #2D3142;
    padding-left: 20%;
    position: sticky;
    top: 0;
    z-index: 1;
}

#menu ul {
    position: relative;
    list-style: none;
    padding: 0;
    height: 100%;
    margin: 0;
}

#menu li { 
    display: inline-block;
    color: #FFFFFF;
    position: relative;
    padding: 12px 12px;
    height: 100%;
    font-size: 20px;
}

#menu li img {
    position: relative;
    height: 21px;
    padding-right: 6px;
    top: 4px;
    margin:0;
}

#menu li:hover {
    background-color: #000000;
}

#content {
    position: relative;
    padding-left: 20%;
    padding-right: 20%;
    margin: 0;
    top: 0;
    left: 0;
}

#content .contentBlock {
    background-color: #E8E8E8;
    margin-top: 3%;
    margin-bottom: 3%;
    padding: 3% 5%;
    border-radius: 25px;
    scroll-margin-top: 60px
}

#content .contentBlock h2 {
    margin-top: 0;
    margin-bottom: 2%;
}

#content .contentBlock h4 {
    margin: 0;
}

#footer {
    width: 100%;
    display: flex;
    flex-direction: row;
    background-color: #2D3142;
    align-items: center;
    justify-content: center;
}

#footer a img {
    padding: 8px 12px;
    height: 21px;
}

#login_window {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 20%;
    height: 20%;
    transform: translate(-50%, -50%);
    border-radius: 25px;
    background-color: #2D3142;
}

#login_link {
    border: 2px;
    border-radius: 25px;
}

#login_with_google {
    width: 100%;
    height: 20%;
}

#google_logo {
    height: 40%;
}