@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Young+Serif&display=swap');

body {

    font-family: "Young Serif", serif;
    font-weight: 400;
    font-style: normal;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #121212;
}

header {
    background-color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 150px;
    border-radius: 20px;

}

header .left a .brand-name {
    display: none;
}

header .left .brand img {
    width: 32px;
}

.flex {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 18px;
}


header .right .work-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
}

header .left .menu {
    display: flex;
    gap: 20px;
}

header .left .menu a {
    text-decoration: none;
    color: white;
}

.work-btn a i,
.menu-btn i {
    color: white;
    font-size: 28px;
}

.work-btn a i:hover,
.menu-btn i:hover,
.menu a:hover {
    color: #FF9EC4;
    transition: .5s ease;
    cursor: pointer;
}

.burger {
    display: none;
}

.menu {
    display: none;
    z-index: 999;
}

.burger.active {
    transition: 0.5 ease;
}

.burger-menu .menu a {
    text-decoration: none;
    color: white;
}



.menu-btn i.active:hover {
    color: #FF9EC4;
}
    
@media (max-width: 1018px) {
    header {
        padding: 20px 30px;
    }

    header .left .menu {
        display: none;
    }

    .burger {
        display: flex;
    }

    header .left a {
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        flex-direction: row;
        color: #FF9EC4;
        gap: 20px;
    }

    header .left a .brand-name {
        display: inherit;
    }

    header .left .menu.active {
        display: flex;
        z-index: 888;
        position: fixed;
        background: #121212;
        top: 0;
        right: 0;
        width: 200px;
        height: 100%;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        box-shadow: 0 5px;
        transition: 1s ease;
        border-radius: 20px;
    }

    header .left .menu a:hover {
        color: #FF9EC4;
        transition: .5s ease;
        cursor: pointer;
    }

    header .left .menu a {
        color: #fff;
    }

}


