<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*CORON DISTURBER*/
.corona {
    border: 2px solid rgb(253, 251, 251);
    opacity: 1;
    position: fixed;
    top: 50%;
    right: 10%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    z-index: 99999 !important;
    margin: 0 auto;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.corona:hover {
    width: 150px;
    height: 150px;
    /* -webkit-transform: rotate(-90deg);
 -moz-transform: rotate(-90deg);
 -ms-transform: rotate(-90deg);
 -o-transform: rotate(-90deg);
 transform: rotate(-90deg);*/
}

.corona a {
    cursor: pointer;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    text-shadow: 4px 4px 2px white;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.corona a:hover {
    font-size: 1.5rem;
}

.corona .img-circle {
    border-radius: 50%
}

.corona .centered {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media (min-width:1300px) {
    .corona {
        top: 25%;
        right: 20%;
        width: 150px;
        height: 150px;
    }

    .corona:hover {
        width: 200px;
        height: 200px;
    }
}

@media (min-width:1800px) {
    .corona {
        top: 25%;
        right: 20%;
        width: 200px;
        height: 200px;
    }

    .corona:hover {
        width: 300px;
        height: 300px;
    }
}

#corona h4 {
    font-size: 2rem;
}

/*Ende Disturber*/
.text-shadow {
    color: white;
    text-shadow: 2px 2px 14px #000000;
}
</pre></body></html>