body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
#score{
    font-size: 30px;
}
.score{
    font-size: 30px;
}
img {
    width: 400px;
    height: 400px;
}
button {
background-color: #007BFF;
color: white;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
transition: background-color 0.3s;
}

button:hover {
background-color: #0056b3;
}

button:active {
background-color: #004085;
}
