.nav {
    background-color: #08224aff;
    height: 50px;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
}

.underline {
    width: 100%;
    height: 5px;
    background-color: #a6a6a6ff;
    z-index: 3;
    position: fixed;
    top: 50px;
}

ul {
    list-style: none;
    display: flex;
    align-self: flex-start;
    margin-right: 50px;
}
  
li {
    margin: 0 20px;
}
  
.header1{
    color: #FFB741;
    font-weight: 800;
    font-size: 20px;
    z-index: 1;
    margin: 0 20px;
    justify-content: flex-start;
    text-decoration: none;
}

.navlink {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.navlink:hover {

    color: #FFB741;

}

@media (min-width: 1450) {

}