 p {
    color: #6f6f6f;
    text-align: center;
    font-family: verdana, sans-serif;
    font-size: 35px;
}
 
* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box; 
}

nav {
    width: 100%;
    height: 80px; 
}

nav ul {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    height: 100%; 
}

nav ul li {
    margin: 0 15px; 
}

nav ul li a {
    color: #6f6f6f;
    font-size: 20px;
    padding: 5px 13px;
    border-radius: 3px;
    font-family: Arial, Helvetica, sans-serif;
}

 a:hover { 
    color:#DEA521D9;
    transition: 2s;
}
 
 body{
     background-color: #FFFFE0;
 }
 
 .active{
     color: #DEA521D9;
 }
 
 .vline{
     color: black;
     width: 4px;
     height: 7px;
 }
 
 a{
     color: #6f6f6f;
 }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 