#loaded {
    background: url(../img/background.png);
    background-size: contain;
    background-position: center;
    z-index: 1;
}

#loader {
    background: #b20728;
    color: white;
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.font-laliga {
    font-family: 'FontTheLiga';
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'FontTheLiga';
    src: url('../fonts/font.woff2') format('woff2'),
        url('../fonts/font.woff') format('woff'),
        url('../fonts/font.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.bg-red {
    background: #b20728;
}

.cartoon {
    z-index: 0;
    position: fixed;
    width: 80vmin;
    height: fit-content;
    left: 4%;
    bottom: 0;
    display: flex;
    align-items: end;
}

.cartoon img {
    width: 45%;
    cursor: pointer;
}


.cartoon div {
    position: absolute;
    box-sizing: border-box;
}

.b {
    border: 0.5vmin solid black;
}

.r {
    border-radius: 100%;
}

.hb::before,
.ha::after {
    content: "";
    display: block;
    position: absolute;
}

.bubble {
    width: 50%;
    left: 13%;
    align-items: center;
    text-align: center;
    background: #ffd;
    font-size: 1rem;
    padding: 40px;
    margin-bottom: 20vh;
}

.bubble::before {
    width: 40%;
    height: 100%;
    bottom: -51%;
    border-radius: 50%;
    left: 10%;
    box-shadow: 0.5vmin 0, 2vmin -0.5vmin #ffd, 2vmin -0.5vmin 0 0.5vmin;
    clip-path: polygon(0% 49%, 150% 48%, 150% 100%, 0% 100%);
}

.cartoon .shake {
    animation: shake 0.5s infinite;
}

@keyframes shake {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(0deg);
    }

    75% {
        transform: rotate(-10deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.victim {
    filter: grayscale(100%) brightness(0%);
}

@media (max-width: 980px) {
    #signal {
        display: none !important;
    }
}