body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2B2A33;
    overflow: hidden;
}

.circle {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #cdb4db;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    display: flex; /* Use flexbox for centering */
    justify-content: center; /* Horizontal centering */
    align-items: center; /* Vertical centering */
    text-align: center;
    cursor: grab;
    transition: transform 0.2s;
    user-select: none; /* Disables text selection */
}
.circle:active {
    cursor: grabbing;
}