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

.header__menu {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.header__menu a {
    font-size: 1.125rem;
    line-height: 1.3;
    padding: 10px 20px;
    text-decoration: none;
    color: #141414;
    display: block;
    border-radius: 4px;
}

.header__menu a:hover {
    background-color: #ffc8dd;
    font-weight: 500;
    transition: .8s;
}

@media(max-width:800px){
    .header {
        flex-direction: column;
    }
    .header__menu a {
        background-color: #F5F5F5;
        border-radius: 4px;
    }
}