* {
    font-family: 'DM Sans', sans-serif;
    text-decoration: none;
}

header {
    color: white;
}

.storyzy-header-sidebar {
    cursor: pointer;
}

.storyzy-header-sidebar-button {
    height: 82px;
    width: 82px;
}

.storyzy-header-title-logo {
}

.storyzy-header-title-logo-img {
    height: 45px;
    width: 181px;
}

.storyzy-header-subtitle {
    margin: 0 10px;
    color: var(--grey);
    font-size: 13px;
    font-weight: 400;
    align-self: flex-end;
}

.storyzy-header-search-right {
    margin-left: auto;
    margin-right: 20px;
}

.storyzy-header-search-right-button {
    text-align: center;
    cursor: pointer;
}

.storyzy-header-search-right-text {
    margin-top: 5px;
    font-weight: bold;
}

header {
    height: 51px;
    padding: 15px 0 15px 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 99;
    text-shadow: 0 5px 10px var(--text-shadow-color);
    background-color: transparent;
}

.header-container {
    width: 75%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
}

.header-right-nav {
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-right-nav {
    font-size: 20px;
}

.header-right-nav a {
    color: white;
    transition: 0.2s;
}

.header-right-nav a:hover {
    text-shadow: 0 0 10px white;
}

.selected {
    border: 2px solid white;
    border-radius: 100%;
    padding: 8px 10px 8px 10px;
}

@media screen and (max-width: 900px) {
    .storyzy-header-title-logo-img {
        width: 150px;
        height: auto;
    }

    .header-right-nav {
        width: 280px;
    }

    .header-container {
        flex-direction: column;
    }
}