body {
    font-family: Arial, sans-serif;
    background: #202020;
    color: #ffffff;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: auto;
}

textarea {
    width: 100%;
    height: 150px;
    font-size: 18px;
    padding: 10px;
    border-radius: 5px;
}

button {
    margin-top: 10px;
    padding: 10px 15px;
    font-size: 16px;
}

#prompter {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    color: white;
    overflow: hidden;
    display: none;
    z-index: 1000;
}

#conteudo {
    position: absolute;
    bottom: -100%;
    width: 100%;
    text-align: center;
    font-size: 45px;
    line-height: 1.4;
}

.mirror {
    transform: scaleX(-1);
}
