body {
    /* position: relative; */
}

.main {
    display: flex;
    max-width: 100%;
    /* margin: 0 auto; */
    /* border: 1px black solid; */
    justify-content: space-between;
}

.essay {
    max-width: 680px;
    margin: 0 auto;

    /* margin-left: 200px; */
    /* margin-right: auto; */
    text-align: justify;
    font-size: 26px;
}

.essay h2 {
    text-align: center;
    color: var(--text-color-1);
}

.essay .launch-date {
    display: block;
    color: var(--text-color-2);
    text-decoration: underline;
    font-size: 16px;
    text-align: end;
}

.essay p {
    line-height: 1.7;
    color: var(--text-color-1);
    font-family: 'Inter', 'Noto Sans SC', -apple-system, sans-serif;
}

.history {
    position: fixed;
    width: 250px;
    height: 250px;
    top: 100px;
    /* margin-left: 20px; */
    background-color: antiquewhite;
    padding-left: 20px;
    overflow: scroll;
}

@media screen and (max-width: 1250px) {
    .history {
        display: none;
    }
}

.history h3 {
    text-align: center;
    color: var(--text-color-2);
}

.history ul {
    list-style: disc;

}

.history ul li a:hover {
    text-decoration: underline;
    color: var(--link-color);
}