body{
    background: white;
}
.menu-bar{
    height: 15vh;
    background: black;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.logo {
    color: white;
    font-size: 2.5rem;
}
.menu-items {
    display: flex;
    gap:1.5rem;
}
.menu-items a {
    color: white;
    font-size: 2rem;
    text-decoration: none;
}
.menu-items a:hover {
    color: white;
    text-decoration: underline;
    text-underline-offset: 1rem;
    font-size: 2.1rem;
}