/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #1c1c1c;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    max-width: 500px;
    padding: 20px;
    border-radius: 12px;
    background: linear-gradient(145deg, #3b3b3b, #2c2c2c);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

h2 {
    margin-bottom: 20px;
}

.game-buttons {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.btn {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    background-color: yellow;
    border: none;
    transition: 0.3s;
    cursor: pointer;
}

.btn:hover {
    transform: scale(1.1);
    background-color: rgb(209, 209, 10);
}

img {
    height: 60px;
    width: 60px;
}

.reset {
    cursor: pointer;
    background-color: yellow;
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    transition: 0.3s;
}

.reset:hover {
    background-color: rgb(209, 209, 10);
}

/* Responsive Design */
@media (max-width: 600px) {
    .btn {
        height: 60px;
        width: 60px;
    }

    img {
        height: 50px;
        width: 50px;
    }
}