#installButton {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 15%;
    left: 65%;
    font-size: 16px;
    padding: 10px 20px;
    color: rgb(255, 255, 255);
    font-weight: bold;
    background-color:#007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
@media screen and (max-width: 600px) {
    #installButton {
        top:15%;
        left: 55%;
        padding: 8px 16px;
        font-size: 14px;
        border-radius: 8px;
    }
}

#installButton:hover {
    background-color: rgb(211, 243, 211);
    color: #007bff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

#installButton:active {
    background-color:rgb(211, 243, 211);
    transform: scale(0.95);
}