@import url('https://fonts.googleapis.com/css2?family=Bungee&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
* {
    font-family: "Roboto", sans-serif;
}
body {
    background-color: aliceblue;
}
a {
    color: burlywood;
}
.background {
    background-color: #333;
    border-radius: 10px;
    padding: 5px;
}
.branding {
    padding: 10px;
    margin: 10px;
    color: whitesmoke;
}
.section {
    font-family: "Bungee", sans-serif;
    text-align: center;
    text-decoration: underline;
}
.content {
    text-align: center;
    padding: 10px;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items:center;
}
nav {
    padding: 10px;
    margin: 10px;
    background-color: #333;
    border-radius: 30px;
}
nav ul {
    list-style: none;
    float: right;
}
nav ul li {
    padding: 10px;
    background-color: none;
    border-radius: 10px;
    display: inline;
}
@media only screen and (max-width: 600px) {
  nav ul li {
    display: block;
  }
}
nav ul li a {
    text-decoration: none;
    font-weight: bold;
    color: whitesmoke;
}
nav ul li a:hover {
    text-decoration: underline;
}

footer {
    padding: 10px;
    background-color: #333;
    color: whitesmoke;
    text-align: center;
    margin: 10px;
    border-radius: 30px;
}