*{
    box-sizing: border-box;
}
body{
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    background-color: #f4f4f4;
    padding: 20px;
    background-image: linear-gradient(
        0deg,
        rgba(0,0,0,0.3),
        rgba(0,0,0,0.3)
    ) 
    ,url(joysticks-6603119_1280.jpg);
    background-repeat: no-repeat;
    background-size: 1900px 1800px;
    background-position: center center;
}
.container{
    background-color: whitesmoke;
    border-radius: 10px;
    box-shadow: 0px 0px 10px pink;
    padding: 20px;
    max-width: 400px;
    margin: 0 auto;
    color: aqua;
    background-image: linear-gradient(
        0deg,
        rgba(0,0,0,0.3),
        rgba(0,0,0,0.3)
    ) 
    ,url(joysticks-6603119_1280.jpg);
    background-repeat: no-repeat;
    background-size: 1900px 1800px;
    background-position: center center;
}
h1{
    color: white;
}
input[type="number"] {
    padding: 10px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 5px;
    width: 200px;
}
button{
    padding: 10px 20px;
    margin-top: 10px;
    font-size: 16px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
button:hover{
    background-color: #218838;
}
#result{
    margin-top: 20px;
    font-size: 18px;
    color: #333;
}
#attempts{
    margin-top: 10px;
    font-size: 16px;
    color: #555;
}
#reset{
    margin-top: 20px;
    background-color: #007bff;
}
#reset:hover{
    background-color: #0056b3;
}