#announcement {
    background: var(--yellow);
    padding: 32px 0 !important;
    width: 100% !important;
    text-align: center;
    position: relative;
}

#announcement p {
    font-size: 28px;
    max-width: 24em;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

#announcement::before {
    content: "";
    display: block;
    height: 100%;
    width: 200vw;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--yellow);
}

#announcement {
    order: 15;

    margin-top: -16px;
    margin-bottom:-16px;

}

@media all and (min-width: 900px) {
    #announcement {
        order: 25;
    }
}

@media all and (max-width: 899px) {
    #announcement p {
        font-size: 22px;
    }

     #announcement {
        margin-top: 16px;
        margin-bottom: 16px;
    }
}