
.header {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    height: 230px;
    scroll-margin-top: 120px;
    background: #91E27B;
}

.menu {
    font-size: 24px;
    line-height: normal;
    white-space: nowrap;
    color: #FFFFFF;

    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    padding: 24px;
    gap: 30px;
    height: 72px;
    background: #50A39A;

    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    z-index: 1000;
}

@media (max-width: 480px) {
    .menu {
        font-size: 18px;
        padding: 15px;
        gap: 15px;
    }

    .header img {
        width: 80%;
    }
}