    body {
        margin: 20px;
    }

    section {
        margin-top: 15px;
        margin-left: 15px;
        animation: show 1s;
    }

    .section {
        animation: show 1s;
    }

    .article-title {
        margin-top: 20px;
        margin-left: 14px;
        animation: show-title 0.5s;
        color: #efefefee;
    }

    .article-title h1 {
        margin: 0;
        font-weight: bold;
        font-size: 1.8em;
    }

    .article-title p {
        margin-top: 0;
        margin-bottom: 0;
        color: #efefef80;
        font-weight: 100;
        font-size: 0.8em;
        line-height: 1em;
    }

    @keyframes show {
        0% {
            opacity: 0;
            transform: translateY(20px);
        }

        30% {
            opacity: 0;
            transform: translateY(20px);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes show-title {
        0% {
            opacity: 0;
            transform: translateY(20px);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    section p {
        margin: 0;
        line-height: 1.6em;
        font-size: 1.1em;
    }

    section a {
        color: #e5d0ae;
        text-decoration: none;
        animation: show 0.5s;
        word-wrap: break-word;
    }

    section h3 {
        margin-block-end: 0.5em;
    }

    section h4 {
        margin-block-start: 0.5em;
        margin-block-end: 0em;
    }

    .hidden {
        display: none;
    }

    .show {
        display: inline;
    }

    @media screen and (orientation: portrait) {
        section p {
            margin: 0;
            line-height: 1.5;
            font-size: 1em;
        }
    }

    @media screen and (max-width: 170px) {
        section {
            margin: 0;
        }
    }

    @media screen and (max-width: 300px) {
        section p {
            font-size: 0.8em;
        }
    }

    @media screen and (min-width: 1800px) {
        section {
            margin-top: 20px;
            margin-left: 100px;
            font-size: 1.2em;
        }
    }

    .box {
        margin-top: 20px;
        padding: 20px 30px;
        border: 1px solid #efefef10;
        border-radius: 8px;
        text-align: left;
        font-size: 1em;
        color: #333;
        background: #ffffffcc;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        width: calc(100% - 20px);
        box-sizing: border-box;
    }

    .box a {
        color: #925a00;
    }