body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    font-family: Arial, sans-serif;
    user-select: none; 

}

/* Background image with overlay */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("background.png.png");
    background-size: 80%;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1; /* Ensure background stays behind all content */
}

.info-text {
    position: fixed;
    top: 0;
    left: 5px;
    right: 0;
    color: #151515; 
    padding: 10px;
    text-align: left;
    font-size: 35px;
    z-index: 1000;
    text-decoration: none; /* Remove underline from movable text */
}

#reloadText {
    font-size: 18px;
    color: #aaa;
    cursor: pointer;
    text-decoration: underline;
}

.movable-text {
    position: absolute;
    cursor: grab;
    font-size: 35px;
    color: #151515;
    user-select: none;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.6s ease;
    background-color: #9aff00;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 30px;
}


.movable-text:hover {
    color: #007bff; /* Change text color to blue on hover */
    transform: scale(0.9, 1.2); /* Width 1.2x, Height 1.7x */
}

#fun {
    background-color: #fdc8ff;
    font-size: 20px;
    padding: 10px;
    border-radius: 30px;
}

/* Mobile view: Hide vibrating text */
@media (max-width: 768px) {
    .movable-text {
      font-size: 25px;
      

    }

  }

/* Mobile view: Hide vibrating text */
@media (max-width: 1200px) {

    #fun {
        display: none;
    }

  }

  @media (max-width: 768px) {
    body::before {
        background-image: url("background mobile.gif"); /* Replace with your mobile-specific image */
        background-size: 60%;
    }

    .info-text {
        font-size: 25px;
    }
}

