.mask {
    position: fixed;
    top:50%;
    left:50%;
    width: .3%;
    height: .1%;
    background-color: rgba(0, 0, 0, .60);
    z-index: 1;
    transform: translate(-50%, -50%);
    animation: award-modal-animation-width .2s ease-in-out forwards, award-modal-animation-height .2s ease-in-out .2s forwards;
}


.modal-content img {
    width: 200px;
}
.modal-content h2 {
    text-transform: uppercase;
    font-size: 14px;
    color: var(--primary-color);
    font-weight: bold;
    font-family: "Poppins", serif;
}
.modal-content h3 {
    font-family: "Poppins", serif;
    text-transform: uppercase;
    font-size: 30px;
    color: var(--primary-color);
    font-weight: bold;
}
.modal-content h3 strong {
    font-family: "Poppins", serif;
    color: var(--secondary-color);
    text-shadow: 0px 1px 1px var(--primary-color);;
}

.modal-content button {
    color: var(--primary-color);
    border:0;
    background: var(--secondary-color);
    font-size: 20px;
    padding: 5px 10px;
    text-transform: uppercase;
    border-radius: 10px;
    cursor: pointer;
}
.modal-content .close-modal{
    font-family: "Poppins", serif;
    font-size: 10px;
    text-decoration: underline;
    cursor: pointer;
}
@keyframes award-modal-animation-width {
    0%   {width: 0%;}
    100% {width: 100%}
}

@keyframes award-modal-animation-height {
    from { height: 0%; }
    to { height: 100%; }
}
