* {
    margin: 0;
    padding: 0;
    border: 0;
    font-family: "Dubai";
}

body {
    background-color: #cdffcd;
}

.container {
    border-radius: 5vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #003300;
    text-align: center;
    display: block;
    font-size: 4vh;
    font-weight: bolder;
}

.container p {
    font-size: 2.5vh;
    font-weight: 350;
    line-height: 1vh;
}

.wrapper {
    display: block;
    text-align: center;
    margin-top: 3vh;
}

i {
    padding-right: 0.6vw;
}

.subject {
    height: 100%;
    width: 100%;
    display: block;
    text-align: center;
    border-radius: 10vh;
    margin-bottom: 0.75vh;
}

button {
    display: block;
    height: 100%;
    width: 100%;
    margin: auto;
    margin-top: 1%;
    border-radius: 10vh;
    background-color: #e5fde0;
    box-shadow: 0 9px 15px 0 rgba(0,0,0,0.2);
    padding: 0 1vw;
    font-size: 3vh;
    transition: 0.5s;
}

button:hover {
    background-color: #4d9b3d;
    color: white;
}

#lit-wrapper {
    display: none;
}

#lang-wrapper {
    display: none;
}

#spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    width: 100%;
}

@keyframes enlarge {
    0% {font-size: 3vh;}
    50% {font-size: 5vh;}
    100% {font-size: 3vh;}
}

#script {
    display: table;
    width: 100%;
    border-spacing: 0.5em;
}

.row {
    display: table-row;
}

.character {
    display: table-cell;
    font-weight: bolder;
    white-space: nowrap;
    padding-right: 5%;
    vertical-align: top;
}

.dialogue {
    display: table-cell;
    width: 100%;
    vertical-align: top;
}

.dialogue.stage-direction {
    font-style: italic;
    text-align: center;
    font-weight: normal;
}