#containerCreateMenu {
    border-radius: 79px 79px 0 0;
    background-color: var(--color-secondary);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 110px;
    background-image: url(../images/pages/createMenu.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#containerCreateMenu h2 {
    max-width: 404px;
    width: 100%;
    color: var(--color-background);
    font-family: var(--font-primary, sans-serif), sans-serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 49px;
}

#containerCreateMenu h3 {
    max-width: 554px;
    width: 100%;
    color: var(--color-text);
    font-family: var(--font-primary, sans-serif), sans-serif;
    font-size: 27px;
    font-weight: 400;
    line-height: 39px;
}

#containerCreateMenu button {
    cursor: pointer;
    width: 317px;
    height: 49px;
    border: none;
    border-radius: 10px;
    background: var(--color-background);
    color: var(--color-text);
    font-family: var(--font-secondary, sans-serif), sans-serif;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#containerCreateMenu p {
    color: var(--color-text);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.createMenu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

.createMenuButton {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 768px) {
    #containerCreateMenu {
        flex-direction: column;
        height: auto;
        padding: 40px 20px;
        gap: 40px;
    }

    #containerCreateMenu h2,
    #containerCreateMenu h3 {
        width: 100%;
        text-align: center;
    }

    #containerCreateMenu h2 {
        font-size: 36px;
        line-height: 1.2;
    }

    #containerCreateMenu h3 {
        font-size: 24px;
        line-height: 1.3;
    }

    .createMenuButton {
        align-items: center;
    }

    #containerCreateMenu button {
        width: 100%;
        max-width: 300px;
    }

    #containerCreateMenu p {
        text-align: center;
    }
}

@media (max-width: 1135px) {
    #containerCreateMenu {
        padding: 0 35px;
    }
}

@media (max-width: 770px) {
    #containerCreateMenu {
        padding: 15px 20px;
        gap: 20px;
    }
}

@media (max-width: 520px) {
    #containerCreateMenu h2 {
        font-size: 28px;
    }

    #containerCreateMenu h3 {
        font-size: 18px;
    }

    #containerCreateMenu button {
        width: 100%;
        font-size: 14px;
    }
}
