  .covid-notice {
    z-index: 201;
    background: #fde073;
    text-align: center;
    overflow: hidden;
    padding: 1em 2em;
    box-shadow: 0 0 5px black;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.covid-notice__close-button {
    position: absolute;
    top: .5em;
    right: .5em;
}

@media (max-width: 900px) {
    .covid-notice__close-button {
        position: absolute;
        top: auto;
        bottom: .5em;
        right: .5em;
    }   
}


.covid-notice__opener {
    background: #fde073;
    z-index: 101;
    position: fixed;
    bottom: 0;
    left: 0;
}

.covid-notice__open-button {
    background:#fde073;
    border: 2px;
}

.covid-notice--hidden {
    display: none;
}

