body {
    font-family: Arial, sans-serif;
    /* background-color: #2c3e50; */
     background-color: #05182a;
    color: #ecf0f1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
header h1{
    font-size: 1.9rem;
    color:#2ecc71;
    text-transform: uppercase;
}

.container {
    /* background-color: #34495e; */
    background: #420764;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    text-align: center;
    width: 80%;
    max-width: 850px;
}

h1 {
    color: #f1c40f;
}

#treinoContainer {
    /* background-color: #232a31; */
    background: #000;
    color:#2ecc71;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: left;
    white-space: pre-wrap;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.2rem;
    overflow-x: auto;
}

.certo {
    color: #2ecc71; /* Verde */
}

.errado {
    color: #e74c3c; /* Vermelho */
    text-decoration: underline;
}

#area-digitar {
    width: 90%;
    height: 150px;
    padding: 15px;
    border-radius: 8px;
    border: none;
    font-size: 1.1rem;
    background-color: #ecf0f1;
    color: #2c3e50;
    resize: none;
    outline: none;
}

.estatistica {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    font-size: 1.2rem;
}

#restart-btn {
    margin-top: 20px;
    padding: 30px 60px;
    font-size: 1rem;
    cursor: pointer;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

#restart-btn:hover {
    background-color: #000;
    color:#2ecc71;
}
footer{
    margin-top: 40px;
}