.navbar ul{
    display: flex;
    list-style: none;
    padding: 0;
    background-color: #4cb6be; 
    margin-left: auto;
    
}
.navbar li {
    border-right: 2px white;
    /* creates the tab line */
}
.navbar li:last-child{
border-right: none;
/* removes the last divider */
}
.navbar a{
    text-decoration: none;
    color: white;
    padding: 10 px 10 px;
    display: block;
}
.navbar a:hover{
    background-color: cyan;
}
.h3{
    font-family: 'Times New Roman', Times, serif;
    color: black;
    background-color: #8ad3f2;
    text-align: center;

}
.h4{
    font-family: 'Times New Roman', Times, serif;
    color: black;
    background-color: #8ad3f2;
    text-align: start;

}