header {
    border-bottom: 10px solid rgba(151, 71, 255, 0.17);
    background: linear-gradient(269deg, #D2DBFF 13.64%, #D0DAFF 88.03%, #D0DAFF 90.67%);
}

header .center {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: var(--logo);
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul a {
    color: #3E2388;
    transition: color .3s;
    font-size: 18px;
    font-weight: 700;
    text-shadow: 1px 1px 0px #FFF;
}

nav ul a:hover {
    color: #BF4644;
}

.searchBar {
    width: var(--search_bar_size);
    display: flex;
}

.searchBar #search {
    flex: 1;
    background-color: transparent;
    border-bottom: 2px solid #3E2388;
}

.searchBar #go {
    width: var(--button_size);
    border-bottom: 2px solid #3E2388;
}

.searchBar #go img {
    opacity: .5;
    transform: scale(.8);
}

@media screen and (max-width:769px) {
    header .center {
        flex-direction: column;
        gap: 15px;
    }

    nav {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .searchBar {
        padding: 0 10px;
    }
}