header{
    position: fixed;
    width: 100%;
    min-height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px 10px 50px;
    background-color: #121212;
    border-bottom: 1px solid #D4AF37;
    color: #D4AF37;
    z-index: 1000;
    margin-top: -80px;
}
#header-right button{
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: none;
    background-color: #D4AF37;
    color: #121212;
    margin-right: 10px;
    transition: 0.4s ease-in-out;
    float: right;
    margin-top: 10px;
}
#header-right button:hover{
    color: #fff;
}
#header-right button a{
    color: #121212;
    transition: 0.4s ease-in-out;
}
#header-right button:hover a{
    color: #fff;
}