#header {
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    height: 70px;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease, border-bottom 0.3s ease;
} 

#nav {
    overflow: hidden;
    margin-top: 15px;
}

.logo {
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 25px;
    color: #fefefe;
    float: left;
    margin: 0 15px 0px 30px;
}

.list-wrapper {
    float: left;
    overflow: hidden;
    list-style: none;
    margin-top: 10px;
    font-weight: bold;
}

.list-item {
    float: left;
    color: #fefefe;
    margin: 0 15px 0 15px;
    font-size: 13px;
}

.list-item:hover {
    color: #867acb;
}

.search-box {
    width: 210px;
    opacity: 1;
    border:none;
    background-color: #1e1e1e;
    color: white;
    font-size: 13px;
    padding: 5px 10px;
    border-radius: 5px;
    margin: 10px 0 0 0;
    float: right;
    overflow: hidden;
    padding: 8px 16px;
}

.search-box:focus {
    outline: none;
    box-shadow: none;
}

.search-btn {
    float: right;
    color: #fefefe;
    margin: 10px 15px 0 15px;
    font-size: 13px;
    font-weight: bold;
}

.login-box {
    float: right;
    color: #fefefe;
    margin: 10px 15px 0 15px;
    font-size: 13px;
    font-weight: bold;
}

.login-box:hover {
    color: #867acb;
}