.modal {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background-color: rgba(0, 0, 0, 0.7);
    
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.modal.open {
    display: flex;
}
.modal__container {
    max-width: 80%;
    background: #162030 url('../images/home/superbowl2022/sblvi__flyover--mobile.png') no-repeat;
    background-size: cover;
    background-position: right;
    padding: 20px 20px 40px;
}
.modal__container:before {
    content:" ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(22, 32, 48, 0.6);
}
.modal__head {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    margin-bottom: 30px;
    position: relative;
}
.modal__btn--close {
    font-size: 30px;
    line-height: 1;
    color: #3A84D9;
    background-color: white;
    border: 0;
    border-radius: 50%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.modal__btn--close svg {
    width: 14px;
    fill: #3A84D9;
}
.modal__btn--close:hover, 
.modal__btn--close:focus {
    cursor: pointer;
    background-color: #162030;
    color: white;
}
.modal__btn--close span {
    display: block;
}
.modal__body {
    width: 100%;
    position: relative;
}
.modal__body h2 {
    font-size: 28px;
}
.modal__body > div {
    margin-bottom: 30px;
}
.modal__body > div a {
    text-decoration: underline;
}
@media (min-width: 992px) {
    .modal__container {
        width: 75%;
        height: 75vh;
        background-position: center;
    }
    .modal__container:before {
        background-color: transparent;
    }
    .modal__body {
        max-width: 66.666%;
        padding-left: 100px;
    }
    .modal__body > h2 {
        font-size: 48px;
        letter-spacing: 4px;
    }
}