body{
    margin:0;
    font-family:Arial;
}

/* NAVBAR */
.navbar{
    background:#0B5ED7;
    padding:15px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* LOGO */
.logo{
    color:white;
    font-size:20px;
    font-weight:bold;
}

/* MENU */
.menu{
    display:flex;
    gap:15px;
}

.menu a{
    color:white;
    text-decoration:none;
    font-size:15px;
}

.menu a:hover{
    text-decoration:underline;
}