/* The Modal (background) */
.noticeModal {
    display: block;
    position: fixed;
    z-index: 99;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    overflow-y: auto;
}

/* Modal Content/Box */
.notice-modal-content {
    background-color: #fefefe;
    margin: 40px auto;
    padding: 20px;
    border: 20px solid #ef3239;
    width: 75%;
}

@media only screen and (max-width: 768px) {
    .notice-modal-content {
        width: 80%;
    }
}

.notice-logo {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
}


.notice-logo img {
    height: auto;
    max-width: 100%;
    width: 200px;
}

.actual-notice {
    text-align: center;
}

.actual-notice h3 {
    font-size: 2rem;
    font-weight: bolder;
    text-decoration: underline;
}

.actual-notice h4 {
    font-size: 1.3rem;
    font-weight: bolder;
    margin-top: 10px;
}

.actual-notice p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.actual-notice p a {
    color: #333333;
    font-weight: bolder;
    font-size: large;
}

/* The Close Button */
.noticeClose {
    color: #797979;
    float: right;
    font-size: 45px;
    font-weight: normal;
    font-family: Arial, Helvetica, sans-serif;
}

.noticeClose:hover,
.noticeClose:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.bFont,
.bFont a {
    font-size: 1.5rem !important;
}

@media only screen and (max-width: 768px) {
    .bFont a {
        font-size: 1rem !important;
    }
}