body {
    font-family: Arial;
    padding: 0;
    margin: 0;
    background-color: rgb(248, 248, 248);
}
a {
    color: #3C63FF;
    text-decoration: underline;
}
    a:hover {
        color: #3154dd;
        text-decoration: underline;
    }

#content-view {
    display: block;
    margin: 0 auto;

    height: auto;
    width: 80%;

    margin-top: 4cm;
}
.card-header {
    display: block;
    position: inherit;
    margin: 0 auto;
    margin-top: 0px;
    margin-bottom: 40px;
    width: 95%;
    padding: 10px;
    border-radius: 5px;
    font-family: inherit;
    font-weight: normal;
    font-size: 35px;
    color: white;
    background-color: rgba(0, 0, 25, 0.8);
    text-align: center;
    /* text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.2); */
}
p {
    display: block;
    position: inherit;
    margin: 0 auto;
    width: 100%;

    font-family: inherit;
    font-weight: normal;
    font-size: 20px;
    white-space: pre-wrap;
    color: rgba(0, 0, 0, 0.5);
    text-align: center;
}
    .special-note {
        display: inline-block;
        position: relative;
        margin-bottom: 25px;
        color: #fff;
        padding: 10px 25px;
        border: none;
        border-radius: 5px;
        background-color: rgba(0, 0, 25, 0.8);
        margin-right: 10px;
    }
.card {
    display: block;
    position: relative;
    margin: 0px auto;
    margin-bottom: 50px;
    width: 85%;
    padding: 50px 25px;
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
}
    .card > h2 {
        position: absolute;
        font-family: inherit;
        font-size: 25px;
        top: -10px;
        left: -10%;
    }
    .card > img {
        display: block;
        position: relative;
        margin: 50px auto;
        width: 100%;
        max-width: 700px;
        border-radius: 10px;
        border: 1px solid black;
    }
#notice-box {
    display: block;
    position: relative;
    margin: 0 auto;
    margin-bottom: 50px;
    left: 0;
    padding: 10px 20px;
    width: auto;
    height: auto;
    background-color: rgb(238, 40, 53);
    border-radius: 3px;
    border: 2px solid rgb(158, 26, 35);
}
    #notice-box p {
        position: relative;
        display: block;
        margin-left: 0px !important;
        width: 80%;
        color: #fff;
        text-align: left;
        font-weight: normal;
    }
    #notice-box button {
        position: absolute;
        padding: 0;
        top: 10px;
        right: 10px;
        width: 34px;
        height: 34px;
        background-color: #fff;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: 0.2s;
    }
        #notice-box button:hover {
            background-color: rgba(255, 255, 255, 0.8);
        }
    #notice-box button div {
        display: block;   
        position: absolute; 
        margin: 0 auto;
        top: 7px;
        left: 15px;
        background-color: rgb(238, 40, 53);
        width: 4px;
        height: 20px;
    }
#footer {
    display: block;
    position: relative;
    margin: 0 auto;
    margin-top: 2cm;
    padding: 15px;
    height: auto;
    border: none;
    border-radius: 7px;
    background-color: rgb(50, 50, 70);
    
    color: rgba(255, 255, 255, 0.5);
    font: 12px Arial;
    text-align: center;

    z-index: 4;
}