.announcement {
    background-color: #415463;
    padding: 5em 3em;

    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;

    text-align: center;
}

@media screen and (max-width: 625px) {
    .announcement {
        display: flex;
    }
}

.announcement__title {
    text-transform: uppercase;
    font-size: 2.5em;
    margin-bottom: 1rem;
}

.announcement__button {
    padding: 1em 2em;
    border-radius: 0.6em;
    border: 0;
    background: #f08508;
    color: #f2f2f2;
    text-transform: uppercase;
}