*{
    margin: 0;
    padding: 0;
}

.Banner{
    width: 100%;
    display:flex;
    justify-content: space-between;
    top:0;
    position: absolute;
    background-color: rgba(255, 255, 255, 0);
    font-family:sans-serif
}

.Logo{
    float: left;
    margin:15px;
}

#Logo{
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0);
    height: 50px;
    fill: blue;
}

.Navbar{
    margin:15px;
    display: flex;
    align-items: center;
}

.NavbarLink{
    text-decoration: none;
    text-align: center;
    justify-content: center;
    font-size: 35px;
    margin-left: 15px;
    background-color: rgba(255, 255, 255, 0);
    color: rgb(92, 92, 92);
    transition: color 0.25s;
}

.NavbarLink:hover{
    color: white;
}

#Selected{
    text-decoration: underline;
    color: white;
}

.Footer{
    width: 100vw;
    height: 200px;
    display: flex;
    justify-content: center;
    background-color: black;
}

.FooterContent{
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-end;
    width: 60%;
    left: 20%;
}