.text {
    background-color: #1c2333;
    border-radius: 10px;
    color: #FFF;
    box-shadow: 0px 0px 10px #384156;
    padding: 20px;
    width: 860px;
    box-sizing: border-box;
    margin: auto;
    margin-top: 60px; /* can't do margin shorthand since margin = auto */
    margin-bottom: 60px; 
    font-size: 21px;
}

ul {
    margin: 0;    
    padding: 0;
    list-style-position: inside;
    list-style-type: none;
}


ul li::before {
    content: "\2022";
    color: var(--izone);
    font-weight: bold;
    display: inline-block; 
    width: 1em; /* Both em lines are important DO NOT GET RID OF EVER. Edit: WHAT IS AN EM LINE!?!?!*/
    margin-left: -1em;
}

li {
    margin-left: 21px;
}

.date {
    color: var(--izone);
    font-family: "Noto Serif KR";
    font-size: 23px;
}

.title {
    color:var(--izone);
    font-size: 23px;
}

.term {
    font-family: "Noto Serif KR";
    font-size: 22px;
}


@media screen and (max-width: 1200px) { /* Mobile Devices */
    #text {
        width: 88%;
    }
}