/* SPLASH CSS */

@import url('variables.css');
@import url('style.css');

/* CENTERBOX */
.centerbox {
    width: 40%;
    height: fit-content;

    padding: 0.5rem 1rem;

    border: 2px dotted var(--border);
    font-size: 14px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: var(--text);

    background-color: var(--basebox)
}

@media screen and (max-width: 800px){
    .centerbox {
        width: 80%;
    }
}