@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&display=block');
@import url('https://fonts.googleapis.com/css2?family=Geist+Mono:wght@400;700&display=block');

:root {
    font-family: "JetBrains Mono", "Geist Mono", "Noto Sans CJK SC", ui-monospace, monospace;
    --screen-bg: #000088;
    --fg: #dddddd;
    --bg: #0a0a11;
    --reversed: #111111;
    --hover: #888888;
    --dark: #333344;
    --darker: #222233;
    --darkest: #111122;
    --black: #000000;
    --screen-dark: #000044;
    --screen-dull: #1a1a44;
    --muted: #777777;
    --primary: #dddd66;
    --secondary: #00aaaa;
    --failure: #aa0000;
    --success: #00aa00;
    --warning: #aa5500;
    --link: #aa55aa;

    --screen-height: 90vh;
    --screen-width: 75vw;
}

[data-theme="light"] {
    font-family: "JetBrains Mono", "Geist Mono", "Noto Sans CJK SC", ui-monospace, monospace;
    --screen-bg: #fffff0;
    --fg: #111111;
    --bg: #0a0a0a;
    --reversed: #dddddd;
    --hover: #f0f0f0;
    --dark: #a0a0a0;
    --darker: #808080;
    --darkest: #505050;
    --black: #000000;
    --screen-dark: #ddddd0;
    --screen-dull: #c0c0c0;
    --muted: #777777;
    --primary: #BB6600;
    --secondary: #008866;
    --failure: #aa0000;
    --success: #00aa00;
    --warning: #aa5500;
    --link: #aa55aa;

    --screen-height: 90vh;
    --screen-width: 75vw;
}

[data-theme="contrast"] {
    font-family: "JetBrains Mono", "Geist Mono", "Noto Sans CJK SC", ui-monospace, monospace;
    --screen-bg: transparent;
    --fg: #ddccaa;
    --bg: #0a0a0a;
    --hover: #ffffff;
    --reversed: #333333;
    --dark: #320032;
    --darker: #808080;
    --darkest: #505050;
    --black: #000000;
    --screen-dark: #101010;
    --screen-dull: #080808;
    --muted: #777777;
    --primary: #ffff88;
    --secondary: #00bbbb;
    --failure: #aa0000;
    --success: #00aa00;
    --warning: #aa5500;
    --link: #aa55aa;

    --screen-height: 100vh;
    --screen-width: 100vw;
}

[data-theme="modern"] {
    font-family: "JetBrains Mono", "Geist Mono", "Noto Sans CJK SC", ui-monospace, monospace;
    --screen-bg: #ddddd0;
    --fg: #111111;
    --bg: #0a0a0a;
    --reversed: #dddddd;
    --hover: #dddd66;
    --dark: #a0a0a0;
    --darker: #808080;
    --darkest: #505050;
    --black: #000000;
    --screen-dark: #bbbbb0;
    --screen-dull: #c0c0c0;
    --muted: #777777;
    --primary: #885588;
    --secondary: #558888;
    --failure: #aa0000;
    --success: #00aa00;
    --warning: #aa5500;
    --link: #aa55aa;

    --screen-height: 100vh;
    --screen-width: 100vw;
}

[data-theme="dark"] {
    font-family: "JetBrains Mono", "Geist Mono", "Noto Sans CJK SC", ui-monospace, monospace;
    --screen-bg: #202020;
    --fg: #cccccc;
    --bg: #0a0a0a;
    --reversed: #333333;
    --hover: #888899;
    --dark: #323232;
    --darker: #161616;
    --darkest: #080808;
    --black: #000000;
    --screen-dark: #101010;
    --screen-dull: #080808;
    --muted: #777777;
    --primary: #aaaa99;
    --secondary: #666688;
    --failure: #aa0000;
    --success: #00aa00;
    --warning: #aa5500;
    --link: #aa55aa;

    --screen-height: 100vh;
    --screen-width: 100vw;
}

[data-theme="simple"] {
    font-family: "JetBrains Mono", "Geist Mono", "Noto Sans CJK SC", ui-monospace, monospace;
    --screen-bg: #666666;
    --fg: #111111;
    --bg: #0a0a0a;
    --reversed: #dddddd;
    --dark: #a0a0a0;
    --darker: #808080;
    --darkest: #505050;
    --black: #000000;
    --screen-dark: #606060;
    --screen-dull: #707070;
    --muted: #999999;
    --primary: #909090;
    --secondary: #c0c0c0;
    --failure: #aaaaaa;
    --success: #bbbbbb;
    --warning: #dddddd;
    --link: #ffffff;

    --screen-height: 100vh;
    --screen-width: 100vw;
}

[data-theme="iron"] {
    font-family: "JetBrains Mono", "Geist Mono", "Noto Sans CJK SC", ui-monospace, monospace;
    --screen-bg: linear-gradient(180deg, #192027 0%, #101419 100%);
    --fg: #8fa0b0;
    --bg: #0a0a0a;
    --reversed: #171717;
    --dark: #202020;
    --darker: #101010;
    --darkest: #010101;
    --black: #000000;
    --screen-dark: linear-gradient(#223344 0%, #112233 25%);
    --screen-dull: linear-gradient(#383842 0%, #303040 25%);
    --muted: #2a2d30;
    --primary: #5b7f9e;
    --secondary: #126f34;
    --failure: #6f1234;
    --success: #12346f;
    --warning: #6f4321;
    --link: #3b3f9e;

    --screen-height: 90vh;
    --screen-width: 75vw;
}

body {
    background: var(--bg);
    color: var(--fg);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    transition: background 0.2s ease-in-out;
}

body.no-boot-animation .screen {
    animation: none;
}

.screen {
    display: flex;
    position: relative;
    background: var(--screen-bg);
    color: var(--fg);
    height: var(--screen-height);
    width: var(--screen-width);
    box-sizing: border-box;
    /* padding: 1em 2em; */
    border-radius: 4px;
    border: none;
    line-height: 2;
    overflow: hidden;
    animation: boot 0.5s ease-in-out forwards;
}

:is([data-theme="default"], [data-theme="light"]) .screen {    
    text-shadow: 
    1px 0 1px rgba(255, 0, 0, 0.7), 
    -1px 0 1px rgba(0, 255, 255, 0.7),
    0 0 6px rgba(230, 237, 255, 0.6);
}

:is([data-theme="default"], [data-theme="light"]) .screen::after {
    content: "";
    display: block;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        linear-gradient(
            rgba(0, 0, 0, 0) 50%,
            rgba(0, 0, 0, .2) 50%
        );
    background-size: 100% 4px, 100% var(--screen-height);
    z-index: 1048576;
    pointer-events: none;
    overflow: hidden;
    animation: flicker .15s infinite, down 5s linear infinite;
}

:is([data-theme="default"], [data-theme="light"]) .screen::before {
    content: "";
    display: block;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(
            ellipse,
            transparent 64%,
            rgba(0, 0, 0, .8) 128%
        ),
        linear-gradient(
            rgba(0, 0, 0, .2) 99%,
            rgba(0, 0, 0, .1) 1%
        );
    z-index: 32;
    pointer-events: none;
}

@keyframes boot {
    0% {
        opacity: 0;
        transform: scaleY(0);
        filter: brightness(0);
    }

    50% {
        opacity: 1;
        transform: scaleY(0.01);
        filter: brightness(3);
    }

    75% {
        filter: brightness(1.5);
    }

    100% {
        opacity: 1;
        transform: scaleY(1);
        filter: brightness(1);
    }
}

@keyframes flicker {
    0% {
        opacity: .75;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: .875;
    }
}

@keyframes down {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 0 0, 0 var(--screen-height);
    }
}

.screen-content {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 1em 2em;
    overflow-x: hidden;
    overflow-y: auto;
}

.screen-content::-webkit-scrollbar {
    width: 8px;
}

.screen-content::-webkit-scrollbar-track {
    background: var(--screen-dark);
    border-left: 1px solid var(--fg);
}

.screen-content::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-width: 2px 0 2px 2px;
    border-style: solid;
    border-color: var(--fg);
}

.screen-content::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.popup {
    background: var(--screen-bg);
    color: var(--fg);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: auto;
    width: auto;
    box-sizing: border-box;
    padding: 1em 2em;
    border-radius: 2px;
    border: 2px solid var(--fg);
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
    line-height: 2;
    overflow: auto;
    z-index: 32768;
}

.popup-small {
    width: auto;
}

.popup-big {
    width: 45vw;
}

.text-btn {
    display: block;
    background: transparent;
    color: var(--fg);
    text-align: start;
    width: 100%;
    font-size: 1em;
    line-height: 1.2;
    border: none;
    cursor: pointer;
}

.text-btn::before {
    content: ">";
    margin-right: 1rem;
}

.text-btn-primary {
    color: var(--primary);
}

.text-btn-secondary {
    color: var(--secondary);
}

.text-btn-disabled {
    color: var(--muted);
}

.text-btn:not([disabled]):hover {
    color: var(--secondary);
}

.text-btn:not([disabled]):active {
    color: var(--link);
}

.text-btn:disabled:hover {
    cursor: not-allowed;
}

.btn {
    background: var(--bg);
    color: var(--fg);
    min-width: 5em;
    /* border: 1px solid var(--fg); */
    border-width: 0;
    border-radius: 0;
    margin: .4em 0;
    padding: .2em .4em;
    text-decoration: none;
    cursor: pointer;
}

.block-btn {
    display: block;
    background: var(--bg);
    color: var(--fg);
    /* border: 1px solid var(--fg); */
    border-width: 0;
    border-radius: 0;
    width: fit-content;
    min-width: 8em;
    padding: .2em .4em;
    margin: .4em 0;
    font-size: 1.2em;
    text-decoration: none;
    cursor: pointer;
}

.square-btn {
    display: flex;
    background: var(--bg);
    color: var(--fg);
    /* border: 1px solid var(--fg); */
    border-width: 0;
    border-radius: 0;
    justify-content: center;
    align-items: center;
    min-width: 5em;
    aspect-ratio: 1 / 1;
    padding: .2em .4em;
    margin: .4em 0;
    font-size: 1.2em;
    text-decoration: none;
    cursor: pointer;  
}

.row-btn {
    display: block;
    background: var(--bg);
    color: var(--fg);
    /* border: 1px solid var(--fg); */
    border-width: 0;
    border-radius: 0;
    width: 100%;
    padding: .2em .4em;
    margin: .4em 0;
    font-size: 1.2em;
    text-decoration: none;
    cursor: pointer;
}

.user-btn {
    display: block;
    background: var(--screen-dull);
    color: var(--fg);
    border-width: 1px 0 0 0;
    border-style: solid;
    border-color: var(--fg);
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: .4em .4em 0;
    font-size: 1.2em;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}

.physical-btn { 
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 8em;
    aspect-ratio: 1 / 1;
    text-decoration: none;
    background: var(--dark);
    color: var(--fg);
    border: 1px solid var(--darkest);
    border-bottom: 6px solid var(--darkest);
    padding: .2em .4em;
    margin: .4em 0;
    text-shadow: 0 -1px 0 rgba(0,0,0,0.5);
    box-shadow: inset 0 1px 0 rgba(168,168,168,0.1), 0 2px 4px rgba(0,0,0,0.3);
    cursor: pointer;
    font-family: inherit;
}

.restart-btn {
    position: absolute;
    bottom: 1em;
    right: 1em;
    width: 12em;
    border-radius: 50%;
    z-index: 32768;
}

:is([data-theme="modern"], [data-theme="dark"], [data-theme="contrast"]) .restart-btn {
    display: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--reversed);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--fg);
}

.btn-good {
    background: var(--success);
    color: var(--fg);
}

.btn-bad {
    background: var(--failure);
    color: var(--fg);
}

.btn-link {
    background: var(--link);
    color: var(--bg);
}

.submit-layout-btn {
    font-size: 2rem;
    height: 100%;
}

:is(.btn, .block-btn, .square-btn, .row-btn):not([disabled]):hover {
    background: var(--hover);
    color: var(--bg);
}

.user-btn:not([disabled]):hover {
    background: var(--dark);
    color: var(--fg);
}

:is(.btn, .block-btn, .square-btn, .row-btn):not([disabled]):active {
    background: var(--muted);
}

.user-btn:not([disabled]):active {
    background: var(--bg);
}

:is(.btn, .block-btn, .square-btn, .row-btn, .user-btn)[disabled] {
    background: var(--muted);
}

:is(.btn, .block-btn, .square-btn, .row-btn, .user-btn)[disabled]:hover {
    cursor: not-allowed;
}

.physical-btn:hover {
    background: var(--darker);
}

.physical-btn:active {
    border-bottom: 0;
    transform: translateY(.33em);
}

a {
    color: var(--link);
    text-decoration: none;
}

a:hover {
    color: var(--secondary);
}

a:active {
    color: var(--muted);
}

.link-primary {
    color: var(--primary);
}

.only-hover-text {
    opacity: 0;
}

.only-hover-text:hover {
    opacity: 1;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .4em;
}

.banner {
    background: var(--screen-dark);
    color: var(--fg);
    line-height: 1.2;
    min-height: 5rem;
    width: 100%;
    box-sizing: border-box;
    padding: 1em .4em;
    margin: 1em auto;
    border: 2px solid var(--primary);
}

.banner:hover {
    background: var(--screen-dull);
}

.post {
    background: var(--screen-dark);
    line-height: 1.2;
    min-height: 75%;
    width: 100%;
    box-sizing: border-box;
    padding: 1em 2em;
    border: 2px solid var(--fg);
}

.title {
    color: var(--primary);
    font-size: 1.6rem;
    text-align: center;
    font-family: "Times New Roman", "SimSun", serif;
    line-height: 1.2;
    margin-bottom: 0.4rem;
}

.metadata {
    color: var(--muted);
    font-size: .8rem;
    text-align: center;
    line-height: 1.2;
    margin-top: 0;
}

.body-text {
    font-size: 1rem;
    text-align: start;
    font-family: "Times New Roman", "SimSun", serif;
}

.post-summary {
    color: var(--fg);
    font-size: 1rem;
    text-align: start;
    font-family: "Times New Roman", "SimSun", serif;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
    background: var(--screen-dull);
    line-height: 1.2;
    min-height: 5rem;
    width: 100%;
    box-sizing: border-box;
    padding: .2em .4em 2em .4em;
    margin: 0 auto;
    border: 1px solid var(--fg);
}

.container h2 {
    color: var(--secondary);
    font-size: 1.6rem;
    text-align: center;
    font-family: "Times New Roman", "SimSun", serif;
    line-height: 1.2;
    margin-bottom: 0.4rem;
}

.column {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 1em;
}

.entry {
    display: block;
    background: var(--screen-dark);
    color: inherit;
    line-height: 1.2;
    width: 90%;
    box-sizing: border-box;
    margin: 0 auto;
    padding: .2em 1em;
    text-decoration: none;
    border: 1px solid var(--fg);
}

.entry:hover {
    background: var(--dark);
}

.entry:active {
    background: var(--screen-dull);
}

.entry-header {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    gap: 1em;
}

.entry h3 {
    color: var(--primary);
    font-size: 1.2rem;
    text-align: start;
    font-family: "Times New Roman", "SimSun", serif;
    line-height: 1.2;
    margin-bottom: 0;
}

.entry .metadata {
    color: var(--muted);
    font-size: .8rem;
    text-align: end;
    line-height: 1.2;
    margin-top: 0;
}

.post-form {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    background: var(--screen-dark);
    color: var(--fg);
    line-height: 2;
    height: 100%;
    width: 80%;
    box-sizing: border-box;
    padding: 1em 2em;
    border: 2px solid var(--fg);
}

.post-form-top {
    display: grid;
    grid-template-columns: 2fr 2fr 3fr;
    gap: 1em;
    align-items: start;
}

.post-form-col {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.post-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.3em;
}

.post-form-bottom {
    width: 100%;
}

.post-form-btn-col {
    height: 100%;
}

:is(.post-form input[type="text"],
.post-form input[type="password"],
.post-form input[type="email"]) {
    background: var(--screen-dull);
    color: var(--primary);
    width: 100%;
    box-sizing: border-box;
    padding: .2em .4em;
    border: 1px solid var(--secondary);
}

:is(.post-form input[type="text"]:hover,
.post-form input[type="password"]:hover,
.post-form input[type="email"]:hover) {
    background: var(--screen-dull);
    border-color: var(--fg);
}

:is(.post-form input[type="text"],
.post-form input[type="password"],
.post-form input[type="email"]):not([disabled]):focus {
    outline: none;
    background: var(--screen-dull);
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

.post-form textarea {
    align-self: center;
    background: var(--screen-dull);
    resize: none;
    color: var(--primary);
    height: 16em;
    width: 96%;
    padding: .2em .4em;
    border: 1px solid var(--secondary);
}

.post-form textarea:not([disabled]):hover {
    border-color: var(--fg);
    box-shadow: 0 0 10px var(--primary);
}

.post-form textarea:not([disabled]):focus {
    outline: none;
    border-color: var(--primary);
}

:is(input[type="text"], input[type="password"], input[type="email"], textarea):disabled {
    background: var(--screen-dark);
    color: var(--muted);
    border-color: var(--muted);
}

:is(input[type="text"], input[type="password"], input[type="email"], textarea):disabled:hover {
    border-color: var(--muted);
    cursor: not-allowed;
}

.sidebar {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: start;
    gap: 1em;
    background: var(--screen-dark);
    color: var(--fg);
    line-height: 1.2;
    min-height: 5rem;
    width: 25%;
    box-sizing: border-box;
    padding: 1em .4em;
    margin: 1em 1em;
    border: 1px solid var(--primary);
}

:is([data-theme="modern"], [data-theme="dark"], [data-theme="contrast"]) .sidebar {
    border-width: 0 1px 0 0;
    height: 100%;
    margin: 0;
}

.sidebar h2 {
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: 0;
}

.sidebar .logo-link {
    align-self: center;
    display: block;
    text-align: center;
    cursor: pointer;
}

.sidebar .logo-link .link-img {
    max-width: 80%;
    display: block;
    margin: 0 auto;
}

.link-img:hover {
    filter: sepia(1) hue-rotate(180deg) brightness(16);
}

.link-img:active {
    filter: sepia(1) hue-rotate(90deg) invert(1);
}
.sidebar span {
    user-select: none;
}

.user-container {
    align-self: center;
    display: block;
    position: relative;
    width: 96%;
    margin: auto 0 0;
}

.user-container .user-btn {
    position: relative;
}

.user-container .user-btn .user-nickname {
    color: var(--primary);
    font-size: 1.2em;
    font-weight: bold;
}

.user-container .user-btn .user-account {
    color: var(--secondary);
    font-size: .4em;
    font-weight: lighter;
}

.user-menu {
    display: flex;
    position: absolute;
    flex-direction: column;
    gap: 1em;
    background: var(--screen-dark);
    bottom: 100%;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    padding: .2em .4em;
    border: 1px solid var(--fg);
    z-index: 256;
}

.user-menu .btn, .user-menu .block-btn, .user-menu .row-btn, .user-menu .square-btn, .user-menu .user-btn {
    background: transparent;
    color: var(--fg);
    border-width: 0;
}

.user-menu .btn:hover, .user-menu .block-btn:hover, .user-menu .row-btn:hover, .user-menu .square-btn:hover, .user-menu .user-btn:hover {
    background: var(--dark);
    color: var(--fg);
}

.user-menu .btn:active, .user-menu .block-btn:active, .user-menu .row-btn:active, .user-menu .square-btn:active, .user-menu .user-btn:active {
    background: var(--bg);
    color: var(--fg);
    transform: translateY(1px)
}

.user-menu hr {
    width: 100%;
    border-color: var(--fg);
}

hr {
    width: 100%;
    border-color: var(--primary);
}

.hr-with-text {
    display: flex;
    color: var(--fg);
    align-items: center;
    text-align: center;
    margin: 20px 0;
}

.hr-text::before,
.hr-text::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid var(--fg);
}

.hr-text:not(:empty)::before { margin-right: 1em; }
.hr-text:not(:empty)::after { margin-left: 1em; }

select {
    background: var(--secondary);
    color: var(--primary);
    width: 100%;
    box-sizing: border-box;
    padding: .2em .4em;
    border: 0;
}

select:not([disabled]):hover {
    background: var(--dark);
}

select:focus {
    outline: none;
}

select option {
    background: var(--secondary);
    color: var(--primary);
}

select option:hover {
    background: var(--muted);
}

.table {
    width: 96%;
    box-sizing: border-box;
    text-align: center;
    padding: 1em 0;
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary);
}

.text-muted {
    color: var(--muted);
}

.hide-raw {
    display: none;
}

.post-rendered {
    line-height: 1.8;
    color: var(--fg);
}

.attachment-box {
    text-align: start;
    color: var(--fg);
}

.attachment-link {
    color: var(--link);
}

.reply-form-container {
    margin-top: 3em;
    padding: 1.5em;
    color: var(--fg);
    background: var(--muted);
    border: 1px solid var(--dark);
}

.reply-form-title {
    margin-top: 0;
}

.comment-error {
    color: var(--failure);
    margin-bottom: 1em;
    font-weight: bold;
}

.reply-hint-box {
    display: none;
    margin-bottom: 1em;
    padding: 0.4em;
    background: var(--warning);
    color: var(--bg);
    font-weight: bold;
}

.cancel-reply-btn {
    color: var(--secondary);
    margin-left: 2em;
    text-decoration: underline;
}

.reply-textarea {
    height: 6em;
    width: 100%;
    box-sizing: border-box;
    resize: vertical;
}

.submit-container {
    margin-top: 1em;
    text-align: right;
}

.submit-btn {
    padding: 0.5em 2em;
}

.login-hint {
    color: var(--fg);
    text-align: center;
    margin: 1em 0;
}

.login-link {
    color: var(--primary);
    font-weight: bold;
    text-decoration: underline;
}

.comments-section {
    margin-top: 3em;
}

.comments-title {
    color: var(--primary);
}

.no-comments {
    text-align: center;
    margin: 2em 0;
}

.comment-item {
    margin-bottom: 1.5em;
    padding: 1em;
    background: var(--screen-dull);
    border-left: 3px solid var(--secondary);
}

.comment-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9em;
}

.commenter-name {
    color: var(--fg);
}

.mention-link {
    color: var(--link);
    margin-left: 0.5em;
    text-decoration: none;
}

.comment-content {
    color: var(--fg);
    white-space: pre-wrap;
    margin-top: 0.8em;
    font-family: monospace;
}

.reply-this-floor-container {
    text-align: right;
    margin-top: 0.5em;
}

.reply-this-floor-btn {
    color: var(--secondary);
    font-size: 0.85em;
    text-decoration: none;
}

.dont-forget-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: center;
    justify-content: center;
    line-height: 1.5;
    width: 100%;
    height: 100%;
}

.dont-forget-text {
    color: var(--failure);
    font-size: 8em;
}

.dont-forget-to-turn-off-text {
    color: var(--failure);
    font-size: 16em;
    font-weight: bold;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 49% {
        opacity: 1;
    }
    50%, 99% {
        opacity: 0;
    }
}

.shutdown-now-text {
    display: inline-block;
    color: var(--failure);
    font-size: 8em;
    height: 60%;
    transform: scaleY(0.6);
}