*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html{
    font-size: 62.5%;
}
body{
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    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: 2.4rem;
    margin-bottom: 20px;
}
input{
    width: 100%;
    padding: 10px;
    margin-top: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1.6rem;
}
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: 1.8rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}