body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #fff8e1;
    margin: 0;
    padding: 0;
}

h1 {
    margin-top: 20px;
    color: #333;
}

#game-container {
    position: relative;
    width: 80vw;
    height: 80vh;
    margin: 20px auto;
    border: 2px solid #333;
    background-color: #ffecb3;
    overflow: hidden;
}

#smiley {
    position: absolute;
    font-size: 50px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

#smiley:hover {
    transform: scale(1.3);
}