/* Estilo general */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #74ebd5, #acb6e5);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #333;
}

.container {
    background: white;
    padding: 20px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 90%;
    max-width: 400px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px;
}

button#generateNumber {
    background: #4caf50;
    color: white;
}

button#submitGuess {
    background: #007bff;
    color: white;
}

button#restartGame {
    background: #f44336;
    color: white;
}

button:hover {
    opacity: 0.9;
}

input {
    padding: 10px;
    width: calc(100% - 20px);
    margin: 10px 0;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
}

p {
    font-size: 16px;
    margin: 5px 0;
}
