/* common */

body {
    background: black;
    color: white;
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    height: 100vh;
    width: 100vw;
    align-items: center;
    justify-content: center;
}

/* index */

button {
    color: red;
    border-radius: 50px;
    padding: 10px;
    background-color: white;
}

.controller {
    /* color: #f00; */
    display: flex;
    justify-content: space-evenly;
}

.cursor-key {
    align-self: center;
    display: flex;
    flex-flow: column wrap;
    justify-content: space-evenly;
    width: max-content;
}

.menu {
    color: white;
    text-align: center;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
}

.message {
    color: white;
}

.screen {
    text-align: center;
}

.status {
    text-align: center;
}

/* novel style */

.novel {
    margin: 0;
    padding: 0;
}

.paragraph {
    margin: 0 0 1em;
}

.novel p {
    margin: 0;
    padding: 0;
    text-indent: 1em;
}

.novel p[noindent] {
    text-indent: 0;
}

/* poem */

.poem {
    display: flex;
    height: 100vh;
    width: 100vw;
    align-items: center;
    justify-content: center;
}

.poem .article {
    height: min-content;
}

.poem p {
    margin: .5em 0;
    padding: 0;
    text-indent: 0;
}