* {
    padding: 0;
    margin: 0;
}


nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
    background: #0e70b0;
}

nav ul {
    display: flex;
    list-style: none;
}

nav li {
    padding-left: 0.5rem;
}

nav a {
    text-decoration: none;
    color: #fff
}