@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    outline: none;
    font-family: 'Lato', sans-serif;
}

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

nav {
    background-color: #151b1f;
    padding: 20px 40px;
    border-radius: 18px;
}

.nav-item {
    color: #bababa;
    font-weight: 700;
    text-decoration: none;
    padding: 0 20px;
    transition: 100ms;
}
.nav-item:hover {
    color: #6ef2b4;
}