body {
    margin: 0;
    height: 100vh;
    overflow: hidden;
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
}

.bug {
    position: absolute;
    font-size: 2rem;
    user-select: none;
    cursor: pointer;
    transition: transform 0.1s;
}

.bug:hover {
    transform: scale(1.3);
}