@font-face {
    font-family: "Alimama_DongFangDaKai";
    src: url('/static/fonts/Alimama_DongFangDaKai.woff2');
}

footer {
    position: absolute;
    bottom: 0;
    text-align: center;
}

@keyframes colorShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

body {
    background: linear-gradient(230deg, #4ab9ec, #71ee7d, #d9eb74);
    background-size: 400% 400%;
    animation: colorShift 30s ease infinite;
    margin: 0 auto;
    padding: 0;
    min-height: 100vh;
    width: 90%;
    align-items: center;
}

textarea {
    width: 60%;
    height: 70vh;
    margin: 1 auto;
}

.tox-editor-container {
    margin: 0 auto;
}

.normal {
    background: linear-gradient(160deg, #6886d8a1 0%, #79f0e663 100%);
    text-align: center;
    font-size: 20px;
    border-radius: 30px;
    border: none;
}

.normal:active {
    background: linear-gradient(160deg, #8cd1ffff 0%, #618bffff 100%);
}

.button-group {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.frosted-glass {
    background: #ffffff1a;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* Safari 支持 */
    border: 1px solid #ffffff26;
    border-radius: 16px;
    box-shadow: 0 4px 30px #0000001a;
}