html {
    font-family: 'Indie Flower', cursive;
    background-image: url('/background.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    margin: 0;
    padding: 0;
}

/*Bootscreen overlay*/
#boot-screen {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(37, 37, 37);
    color: #7aa6dd;
    font-family: 'Indie Flower', cursive;
    font-size: 20px;
    padding: 2rem;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 280ms ease-in-out;
    z-index: 10000;
    line-height: 1.6;
}

#boot-screen.visible {
    opacity: 1;
    pointer-events: auto;
}

.boot-text {
    display: block;
    max-width: min(800px, 88%);
    width: 100%;
    text-align: left;
    white-space: pre-wrap;
    font-family: 'Share Tech Mono', monospace;
    color: #7aa6dd;
    font-size: 15px;
    line-height: 1.45;
}

.boot-text::after {
    content: '▌';
    display: inline-block;
    margin-left: 6px;
    opacity: 1;
    animation: blink 900ms steps(1) infinite;
    color: #7aa6dd;
}

@keyframes blink {
    50% { opacity: 0 }
}

.fade-out {
    animation: fadeOut 1s forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/*entering screen*/
#entering {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #7aa6dd;
    color: #0d1929;
    font-family: 'Share Tech Mono', monospace;
    font-size: 50px;
    padding: 2rem;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 280ms ease-in-out;
    z-index: 10000;
    line-height: 1.6;
}

#entering.visible {
    opacity: 1;
    pointer-events: auto;
}

#entering-text {
    display: block;
    max-width: min(800px, 88%);
    width: 100%;
    text-align: center;
    white-space: pre-wrap;
    font-family: 'Share Tech Mono', monospace;
    color: #0d1929;
    font-size: 50px;
    line-height: 1.45;
}

h1 {
    position: absolute; 
    top: 40%; 
    left: 40%;
    font-size: 75px;
}

h2 {
    position: absolute; 
    top: 53%; 
    left: 40%;
    font-size: 45px;
}

#login-button {
    position: absolute; 
    top: 68%; 
    left: 50%;
    font-size: 35px;
    font-family: 'Indie Flower', cursive;
    border: none;
    text-decoration: wavy underline;
    background: none;
    cursor: pointer;
    padding: none;
}