.shade {
    overflow: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.blackboard, .bb {
    position: relative;
    width: 97%;
    margin: 2% auto;
    border: tan solid 12px;
    border-top: #bda27e solid 12px;
    border-left: #b19876 solid 12px;
    border-bottom: #c9ad86 solid 12px;
    box-shadow: 0px 0px 6px 5px rgba(58, 18, 13, 0), 0px 0px 0px 2px #c2a782, 0px 0px 0px 4px #a58e6f, 3px 4px 8px 5px rgba(0, 0, 0, 0.5);
    background-image: radial-gradient( circle at left 30%, rgba(34, 34, 34, 0.3), rgba(34, 34, 34, 0.3) 80px, rgba(34, 34, 34, 0.5) 100px, rgba(51, 51, 51, 0.5) 160px, rgba(51, 51, 51, 0.5)), linear-gradient( 215deg, transparent, transparent 100px, #222 260px, #222 320px, transparent), radial-gradient( circle at right, #111, rgba(51, 51, 51, 1));
    background-color: #333;
}
.blackboard {
    position: relative;
    transform: rotate(-0.5deg);
}
.blackboard {
    animation: swing 6s ease-in-out infinite;
    transform-origin: top center;
}
.blackboard::after {
    content: "";
    position: absolute;
    top: -70px;
    left: 50%;
    width: 2px;
    height: 70px;
    background: linear-gradient(to bottom, #ddd, #aaa);
    transform: translateX(-50%);
    box-shadow: 0 0 2px rgba(0,0,0,0.5);
}

.blackboard::before {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient( 175deg, transparent, transparent 40px, rgba(120, 120, 120, 0.1) 100px, rgba(120, 120, 120, 0.1) 110px, transparent 220px, transparent), linear-gradient( 200deg, transparent 80%, rgba(50, 50, 50, 0.3)), radial-gradient( ellipse at right bottom, transparent, transparent 200px, rgba(80, 80, 80, 0.1) 260px, rgba(80, 80, 80, 0.1) 320px, transparent 400px, transparent);
    border: #2c2c2c solid 2px;
    content: "Important Notice";
    font-family: 'Permanent Marker', cursive;
    font-size: 2.2em;
    color: rgba(238, 238, 238, 0.7);
    text-align: center;
    padding-top: 20px;
}
.blackboard::marker {} /* ignore */
.shade::before {
    content: "";
    position: absolute;
    top: 182px;
    left: 50%;
    width: 14px;
    height: 14px;
    background: radial-gradient(circle at 30% 30%, #777, #222);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 2px 4px rgba(0,0,0,0.6);
    z-index: 10;
}
@keyframes swing {
    0% { transform: rotate(-0.8deg); }
    50% { transform: rotate(0.8deg); }
    100% { transform: rotate(-0.8deg); }
}
.notice {
    padding: 70px 20px 20px;
    height: 325px;
}
.nc {
    padding: 70px 20px 20px;
}
p {
    position: relative;
    margin-bottom: 1em;
}

label {
    vertical-align: middle;
    font-family: 'Permanent Marker', cursive;
    font-size: 1.6em;
    margin-right: 1%;
    color: rgba(238, 238, 238, 0.7);
}

.notice p a {
    vertical-align: middle;
    font-family: 'Permanent Marker', cursive;
    font-size: 1.6em;
    color: rgba(238, 238, 238, 0.7);
}

.nc p a {
    vertical-align: middle;
    font-family: 'Permanent Marker', cursive;
    color: rgba(238, 238, 238, 0.7);
    text-align: right;
    font-size:18px;
    font-weight: 900;
    float: right;
}
.nc div {
    padding: 1%;
    font-weight: 900;
    font-size: 16px;
    text-align: justify;
}
.notice p a:hover, .nc p a:hover {
    color: #20c9ce;
}

p:nth-of-type(5) > label {
    vertical-align: top;
}