body {
    margin: 0px;
    overflow: hidden;
    font-family: 'Pacifico', sans-serif;
    background-image: url('../images/twitchChannelCropped.png');
}
#app {
    width: 100%;
    height: 100%;
}
#demoDisclaimer {
    position: fixed;
    top: 5%;
    padding: 20px;
    border: 2px solid #ccc;
    border-radius: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    background-color: rgb(37 22 47);
    margin: 0 auto;
    display: block;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    white-space: pre;
}
.item {
    filter: drop-shadow(0 0 0.75rem rgb(255, 217, 0));
}
.itemLabel {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: bold;
    color: #eee;
    font-size: 22px;
}
.labelFadeIn {
    animation: fadeIn 1s;
}
.item:hover {
    cursor: pointer;
}
.itemFadeIn {
    animation: fadeIn 3s, spawnRotate 5s infinite;
}
.labelFadeOut {
    animation: fadeOut 1s;
}
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
@keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; }
}
@keyframes spawnRotate {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(45deg); }
    75% { transform: rotate(-45deg); }
    100% { transform: rotate(0deg); }
}
@media only screen and (max-width: 1200px) {
    body {
        background-image: url('../images/twitchChannel-MobileCropped.png');
        background-repeat: no-repeat;
        background-size: cover;
    }
    #demoDisclaimer {
        font-size: 16px;
        border-width: 3px;
        top: 35%;
}
@media only screen and (min-device-pixel-ratio: 1.5) {
    body {
        background-image: url('../images/twitchChannel-MobileCropped.png');
    }
}