body {
    margin: 0px !important;
}

#game-wrap {
    overflow: hidden;
 }

 
.award-modal {
    display: none;
    position: fixed;
    z-index: 1; 
    padding-top: 100px; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
    -webkit-animation-name: fadeIn; 
    -webkit-animation-duration: 0.4s;
    animation-name: fadeIn;
    animation-duration: 0.4s
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
    box-shadow: 0 1px 4px 2px rgba(53, 53, 53, .5);
    border-radius: 1rem;
    border-width: 0.5rem !important;
    border-style: solid !important;
    border-color: #63280a !important;
    background-color: #f9c77d !important;
    color: #63280a !important;
    -webkit-animation-name: slideIn;
    -webkit-animation-duration: 0.4s;
    animation-name: slideIn;
    animation-duration: 0.4s
}

.outside-link {
    display: flex;
    justify-content: space-around;
}

.outside-link a {
    text-decoration: none;
}

/* The Close Button */
.close {
    color: #63280a;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.notify-msg {
    font-size: 2.5rem;
    padding: 20px 20px;
    border: 5px solid #e9b465;
}


/* Add Animation */
  
@-webkit-keyframes fadeIn {
    from {opacity: 0} 
    to {opacity: 1}
}

@keyframes fadeIn {
    from {opacity: 0} 
    to {opacity: 1}
}