html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-image: linear-gradient(#e13d7e, #4a90df);
}

body
{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 98%;
}

#nav {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#logo {
    background-color: white;
    background-image: url(img/web_logo_alt.png);
    background-size: 600px;
    background-repeat: no-repeat;
    background-position: center 0;
    border-radius: 10px;
}

#nav ul {
    margin-top: 70px;
    padding: 40px 10px 0 10px;
    text-align: center;
}
li {
    display: inline;
    padding: 3px 32px;
    font-family: Oxanium;
    font-size: 20px;
    font-weight: 700;
    color: #666;
    cursor: pointer;
}
li:hover {
    background-color: #f26ca1;
    color: #c91f62;
    border-radius: 20px;
}
li:nth-child(odd):hover {
    background-color: #86bbf7;
    color: #266ebf;
}