html{
    min-height:100%;/* make sure it is at least as tall as the viewport */
    position:relative;
}
body{
    height:100%; /* force the BODY element to match the height of the HTML element */
}
    /* The Modal (background) */
.modal {
    display: block; /* Hidden by default */
    position: absolute; /* Stay in place */
    z-index: 99; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    background-color: transparent;
    margin: 10% auto; /* 15% from the top and centered */
    padding: 0px;
    border: 0px solid #888;
    width: 85%; /* Could be more or less, depending on screen size */
    position: relative;
    height: fit-content;
}

.modal.notice .modal-content
{
    margin-top: 40px;
    margin-bottom: 40px;
    display: inline-block;
}

/* The Close Button */
.close {
    position: absolute;
    top: -25px;
    right: 10px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal.notice .close{
    top: -35px;
    right: -20px;
    color: yellow;
}

.modal.notice .close:hover,
.modal.notice .close:focus
{
    color: rgb(255, 255, 140);
    text-decoration: none;
    cursor: pointer;
}

.modal.notice{
    height: max-content;
    width: 100%;
    background-color: black;
    opacity: 0.88;
    color: yellow;
    max-width: 800px;
    margin-left: 20%;
    margin-right: 20%;
    margin-top: 10px;
    margin-bottom: 30px;
    padding: 5px;
    border-radius: 10px;
    overflow: hidden;
    position: abosule;
    left: 0px;
    top: 250px;
    box-sizing: border-box;
    vertical-align: middle;
}

.modal iframe{
    padding: 0px;
    border: 0px;
    min-height: 1200px;
    width: 100%;
    border-color: transparent;
    background: transparent;
}

.holiday-notice{
    background-color: black;
    opacity: 0.8;
    color: yellow;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -20px;
    margin-bottom: 30px;
    padding: 5px;
    border-radius: 10px;
}
.holiday-notice p{
    color: yellow;
    opacity: 1.0;
    background: transparent;
}