body{
    padding: 0;
    margin: 0;
}


.navcont{
    width: 100%; 
    position: sticky; /*nav stay while scorlling*/
    top: 0; /*nav stay while scorlling*/
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between; /*to tear apart title and menu*/ 
    background-color:rgb(255, 187, 0);
}


.navrightdiv{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.welcomestmt{
    font-family: 'Times New Roman', Times, serif;
    font-size: 16px;
}

.navmenu{
    display: flex;
    flex-direction: row;
    margin-right: 2vw;
}


.navmenu .menulink{
    list-style: none;
    margin-left: 2vw;
}

.navmenu .menulink :hover{
    background-color: rgba(255, 255, 255, 0.719);
    border-radius: 7px;
    transition: 0.3s;
    cursor: pointer;
}

.navmenu .buttoncontrol{
    text-decoration: none;
    border: none;
    background: none;
    padding: 0.8vw;
    color: #000;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 16px;
}