/*** Root ************************************************************/
@import "../style.css";

/*** Inicio ************************************************************/

.field-game {
    max-width: 500px;
    margin: 30px auto 30px auto;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
h1 {
    text-align: center;
    color: #4a4a4a;
}
textarea {
    width: 100%;
    height: 150px;
    margin-top: 10px;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
    resize: none;
}
button {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 15px;
    font-size: 16px;
    background-color: #87c0cd;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
button:hover {
    background-color: #6bb4c2;
}
.result {
    text-align: center;
    margin-top: 20px;
    font-size: 20px;
    color: #333;
}
.countdown {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
    color: #555;
}