*{
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: aqua;
}

#footer {
    position: fixed;
    left: 50%;
    right: 50%;
    bottom: 5px;
    width: 100%;
}

#leftside {
    position: fixed;
    left: 5px;
    width: 30%;
}
#rightside {
    position: fixed;
    right: 5px;
    width: 70%;
    height: 800px;
}

a:link {
    text-decoration: none;
    color: black;
    font-size: larger;
}
a:visited {
    text-decoration: none;
    color: black;
}
a:hover {
    text-decoration: none;
    color: black;
}
a:active {
    text-decoration: none;
    color: black;
}



.navbar {
    background-color: #e5e5e5;
    height: 50px;
    border-radius: 50px;
}

.navbar img {
    width: 150px;
    padding: 15px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav {
    float: right;
    margin: 0;
}

li {
    display: inline;
    padding: 15px;
}

nav a {
    text-decoration: none;
    color: #353535;
    display: inline-block;
    padding-top: 15px;
}

nav a:hover {
    color: #00b2b2;
}

nav a:active {
    font-weight: bold;
}

@media screen and (max-width: 700px) {
    nav {
        width: 100%;
        margin-top: -5px;
        border-radius: 50px;
    }

    nav li {
        display: block;
        background-color: #e5e5e5;
        text-align: center;
        border-radius: 50px;
    }
}
