@font-face {
    font-family: 'BlackChancery';
    src: url("/fonts/BLKCHCRY.woff");
}


@font-face {
    font-family: 'Averia Libre';
    src: url("/fonts/AveriaLibre-Regular.woff");
}

body {
    background-color: rgb(20, 19, 19);
    background-image: url(/images/evilbettercompressed.gif);
    background-size: cover;
    background-attachment: fixed;
    margin: 0;
}

* {
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: maroon black;
}

.speechbubble {
    color: white;
    font-size: 30pt;
    width: 50%;
    margin: auto;
    margin-top: 300px;
    animation-name: spin;
    animation-duration: 10000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    transform-origin: center;
    text-shadow: red 5px 5px 5px;
    font-family: Chiller, sans-serif;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.HELP {
    display: flex;
    position: absolute;
    top: 0;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    width: 100%;
    height: 100%;
    align-items: center;
    gap: 100px;
    z-index: -3;
}

.HELP img {
    transition: .3s;
}

.HELP img:hover {
    opacity: 0;
}

.linkout {
    width: fit-content;
    height: fit-content;
    position: absolute;
    z-index: 3;
    left: 800px;
    top: 900px;
}

.linkout img {
    transition: 1s;
}

.linkout img:hover {
    scale: 200%;
}

.hellotext {
    backdrop-filter: blur(12px) saturate(134%);
    -webkit-backdrop-filter: blur(12px) saturate(134%);
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 100%;
    box-shadow: 0px 0px 70px 20px #f2f2f2;
    margin: auto;
    width: 250px;
    height: 250px;
    text-align: center;
    padding: 55px;
    margin-top: 350px;
    font-family: 'Black Chancery', Georgia, serif;
    font-size: 22pt;
    animation: spin infinite linear 100s;
    position: relative;
}

.hellotext p {
    line-height: 1;
    padding: 0;
    margin: 0;
}

.mirror {
    width: 200px;
    position: absolute;
    border-radius: 100%;
    transition: 0.5s;
}

#pastelm:hover,
#redm:hover,
#bluem:hover,
#yellowm:hover {
    animation-play-state: paused;
    scale: 1.2;
}

#pastelm {
    top: -300px;
    right: 0;
    animation: spin reverse linear 10s infinite;
}

#redm {
    left: -300px;
    top: 0;
    animation: spin 4s infinite linear;
}

#bluem {
    right: -300px;
    top: 0;
    animation: spin linear infinite 30s;
}

#yellowm {
    bottom: -300px;
    right: 0;
    animation: spin reverse linear infinite 7s
}