* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
    color: inherit;
    word-wrap: break-word;
    word-break: break-all;
    font-weight: bold;
}

body {
    padding-top: 8px;
    padding-bottom: 136px;
    overflow: overlay;
}

.retraction {
    text-indent: 2em;
    display: block;
}

.copy,
.link {
    text-decoration: underline;
}

.copy {
    opacity: 0.75;
}

.copy:hover {
    cursor: pointer;
}

.title {
    line-height: 76px;
    font-size: 52px;
    animation: title 0.75s linear;
}

.subheading {
    line-height: 64px;
    font-size: 44px;
    animation: subheading 0.75s linear;
}

.title,
.subheading {
    white-space: nowrap;
    text-align: center;
    margin-top: 8px;
    margin-bottom: 8px;
    color: rgb(50, 150, 100);
    filter: drop-shadow(0px 0px 2px rgba(50, 150, 100, 0.75));
    overflow: overlay;
}

.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 8px;
    padding-right: 8px;
}

.content-essay {
    background-color: rgb(50, 150, 100);
    color: rgb(255, 255, 255);
    filter: drop-shadow(0px 0px 2px rgba(50, 150, 100, 0.75));
    margin: 8px;
    width: 320px;
    animation: content-essay 0.75s linear;
}

.content-essay-title {
    line-height: 48px;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 32px;
    filter: drop-shadow(0px 0px 2px rgba(255, 255, 255, 0.5));
}

.content-essay-detail {
    line-height: 28px;
    border-top: 4px dashed rgb(255, 255, 255);
    font-size: 20px;
    padding: 8px;
    filter: drop-shadow(0px 0px 2px rgba(255, 255, 255, 0.5));
}

.content-essay-detail-img {
    width: 100%;
    display: block;
}

.content-button {
    background-color: rgb(50, 150, 100);
    color: rgb(255, 255, 255);
    width: 320px;
    user-select: none;
    text-align: center;
    white-space: nowrap;
    margin: 8px;
    transition: 0.25s;
    animation: content-button 0.75s linear;
    overflow: overlay;
    line-height: 82px;
    font-size: 36px;
    filter: drop-shadow(0px 0px 2px rgba(50, 150, 100, 0.75));
}

.content-button:hover {
    transform: scale(1.05);
    background-color: rgba(50, 150, 100, 0.75);
}

.content-button:active {
    transform: scale(0.95);
}

.content-button-title {
    line-height: 48px;
    font-size: 32px;
    overflow: overlay;
    filter: drop-shadow(0px 0px 2px rgba(255, 255, 255, 0.5));
}

.content-button-text {
    filter: drop-shadow(0px 0px 2px rgba(255, 255, 255, 0.5));
}

.content-button-detail {
    line-height: 32px;
    border-top: 4px dashed rgb(255, 255, 255);
    font-size: 20px;
    overflow: overlay;
    filter: drop-shadow(0px 0px 2px rgba(255, 255, 255, 0.5));
}

.ornament {
    width: 128px;
    height: 128px;
    background-image: url(https://vip.123pan.cn/1812244635/%E5%88%86%E4%BA%AB/Data/%E5%9B%BE%E7%89%87/%E5%85%B6%E4%BB%96/IKUN%E9%B8%A1%E9%80%8F%E6%98%8E%E8%83%8C%E6%99%AF.png);
    background-size: cover;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    transition: 60s;
    animation: ornament 0.75s linear;
    filter: drop-shadow(0px 0px 2px rgb(0, 0, 0));
}

.ornament:active {
    transform: scale(0) rotate(36000deg);
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::selection {
    color: rgb(255, 255, 255);
    background-color: rgb(50, 150, 100);
}

body::-webkit-scrollbar-thumb,
.title::-webkit-scrollbar-thumb,
.subheading::-webkit-scrollbar-thumb,
.content-button::-webkit-scrollbar-thumb,
.content-button-title::-webkit-scrollbar-thumb,
.content-button-detail::-webkit-scrollbar-thumb {
    background-color: rgba(50, 150, 100, 0.25);
}

body::-webkit-scrollbar-thumb:hover,
.title::-webkit-scrollbar-thumb:hover,
.subheading::-webkit-scrollbar-thumb:hover,
.content-button::-webkit-scrollbar-thumb:hover,
.content-button-title::-webkit-scrollbar-thumb:hover,
.content-button-detail::-webkit-scrollbar-thumb:hover {
    background-color: rgba(50, 150, 100, 0.5);
}

body::-webkit-scrollbar-thumb:active,
.title::-webkit-scrollbar-thumb:active,
.subheading::-webkit-scrollbar-thumb:active,
.content-button::-webkit-scrollbar-thumb:active,
.content-button-title::-webkit-scrollbar-thumb:active,
.content-button-detail::-webkit-scrollbar-thumb:active {
    background-color: rgba(50, 150, 100, 0.25);
}

.content-button::-webkit-scrollbar-thumb,
.content-button-title::-webkit-scrollbar-thumb,
.content-button-detail::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.25);
}

.content-button::-webkit-scrollbar-thumb:hover,
.content-button-title::-webkit-scrollbar-thumb:hover,
.content-button-detail::-webkit-scrollbar-thumb:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.content-button::-webkit-scrollbar-thumb:active,
.content-button-title::-webkit-scrollbar-thumb:active,
.content-button-detail::-webkit-scrollbar-thumb:active {
    background-color: rgba(255, 255, 255, 0.25);
}

@keyframes title {
    0% {
        transform: translateY(-80px);
    }

    50% {
        transform: translateY(0px);
    }

    75% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes subheading {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1);
    }

    75% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes content-essay {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1);
    }

    75% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes content-button {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1);
    }

    75% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes ornament {
    0% {
        transform: translateY(24px) scale(0);
    }

    25% {
        transform: translateY(-48px) scale(0.25);
    }

    50% {
        transform: translateY(0px) scale(0.5);
    }

    75% {
        transform: translateY(-48px) scale(0.75);
    }

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

@media (max-width: 128px) {
    .ornament {
        display: none;
    }
}

@media (max-width: 320px) {
    .content-button:active {
        transform: scale(1);
    }
}

@media (max-width: 336px) {
    .content-button:hover {
        transform: scale(1);
    }
}

@media (max-width: 352px) {
    .content {
        padding-left: 0;
        padding-right: 0;
    }

    .content-essay,
    .content-button {
        margin-left: 0;
        margin-right: 0;
    }
}