.modal {
    font-family: 'Fira Sans', sans-serif;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;

    -moz-animation: cssAnimation .5s ease-in 5s forwards;
    /* Firefox */
    -webkit-animation: cssAnimation .5s ease-in 5s forwards;
    /* Safari and Chrome */
    -o-animation: cssAnimation .5s ease-in 5s forwards;
    /* Opera */
    animation: cssAnimation .5s ease-in 5s forwards;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    opacity: 0;
}

.modal .modal-dialog {
    width: 70%;
    max-width: 1200px;
}

.modal .modal-dialog .modal-header {
    position: relative;
    background-color: #338a08;
    color: white;
    text-align: center;
    text-transform: uppercase;
    padding: 20px 30px;
}

.modal .modal-dialog .modal-header .close {
    color: white;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: -15px;
    font-size: 120px;
    font-weight: 100;
}

.modal .modal-dialog .modal-header .close:hover {
    opacity: .75;
}

.modal .modal-dialog .modal-body {
    background-color: white;
    color: black;
    padding: 15px 30px;
    text-align: center;
    font-size: 21px;
}

.modal .modal-dialog .modal-body b {
    display: block;
    color: #ad1713;
    font-weight: 900;
}

.modal .modal-dialog .modal-body p {
    font-weight: 500;
}

.modal .modal-dialog .modal-body p:last-of-type {
    font-size: 18px;
}

.modal .modal-dialog .modal-body b, .modal .modal-dialog .modal-body p {
    text-align: left;
    margin: 15px 0;
}

.modal .modal-dialog .modal-body a {
    color: black;
    text-decoration: underline;
}

.modal .modal-dialog .modal-body a:hover, .modal .modal-dialog .modal-body a:active {
    color: black;
    text-decoration: none;
}

.modal .modal-dialog .modal-body .btn {
    text-shadow: 1px 1px 2px #357506;
    display: inline-block;
    background-color: #3B8207;
    line-height: 64px;
    padding: 3px 40px 0 40px;
    font-weight: bold;
    font-size: 26px;
    color: white;
    border-radius: 10px;
    border: 0;
    border-bottom: 3px solid #357506;
    margin: 5px 0;
    text-transform: uppercase;
}

.modal .modal-dialog .modal-body .btn:hover {
    cursor: pointer;
    background-color: #357506;
    color: white;
}
