* {
    box-sizing: border-box;
}

body {
    background-color: #B9F3E4;
    color: #05505E;
    font-family: Helvetica;
    margin: 0;
    padding: 0;
}

header {
    display: flex;
    height: 75px;
    position: fixed;
    width: 100%;
    top: 0;
    transition: top 0.3s;
    z-index: 1000; 
}
#container {
    display: flex;
    align-items: center;
    background-color: #08333F;
    width: 100%;
    color: #D7DEBF;
}

#logo {
    margin-left: 30px;
    display: flex;
    align-items: center;
    height: 100%;
}
#logo img {
    max-width: 38.5px;
    max-height: 48.4px;
    min-width: 35px;
    background-color: #D7DEBF;
    padding: 1px;
    margin-right: 1px;
    border-radius: 8px 10px;
}
h1 {
    cursor: default;
    margin-left: 0.5px;
}

nav {
    display: flex;
    align-items: center;
    margin-left: 15px;
}
nav a {
    top: 13px;
    margin-left: 30px;
    text-decoration: none;
    color:#EADA80;
    font-size: 20px;
}
a:hover {
    background-color: #EADA80;
    color: #05505E;
    padding: 5px;
}
.current {
    border-bottom: 1px solid #F7DE6A;
    box-shadow: 0 1px 0  #F7DE6A;
    color: #F7DE6A;
}

main {
    margin-top: 95px;
    margin-bottom: 70px;
}

h2 {
    text-align: center;
    color: #3C285B;
}
footer {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: #08333F;
    color: #D7DEBF;
    position: fixed;
    bottom: 0;
    height: 50px;
    width: 100%;
    padding: 10px;
}

footer div {
    display: flex;
    height: 100%;
}

footer > p > a {
    color: #EADA80;
    text-decoration: none;
}

footer > div > a:hover {
    background-color: unset !important;
    color: unset !important;
    padding: unset !important;
}

footer p {
    margin: unset !important;
    padding: unset !important;
    line-height: unset !important;
}

