body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: #333;
}


.game-container {
    background-color: #ffffff;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 340px;
    text-align: center;
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;

}

input {
    width: 100%;
    padding: 10px;
    margin-top: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

button {
    background-color: #84fab0;
    border: none;
    color: white;
    padding:10px 15px;
    margin-top: 15px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
}


button:hover {
    background-color: #68d391;
}


.score-container {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #68d391;
    border-radius: 50%;
    padding: 10px 15px;
    font-size: 18px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);

}