body {
    background-color: #550099;

    /*
    background-image: url("../img/tm-bg.jpg");
    background-attachment: fixed;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    */
}

/* We have to do this because iOS is stupid and ignores viewport-fixed backgrounds */
body:before {
    content: "";
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    background: url("../img/tm-bg.jpg") no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.tm-text a {
    color: #D6F7EC
}

@keyframes blink {
    from {
        opacity: 100%;
    }

    to {
        opacity: 0%;
    }
}

@-webkit-keyframes blink {
    from {
        opacity: 100%;
    }

    to {
        opacity: 0%;
    }
}

.tm-blink {
    animation-name: blink;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    -webkit-animation-name: blink;
    -webkit-animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
}

.tm-smoked {
    background-color: rgba(0, 0, 0, 0.5);
}

.tm-dark {
    background-color: #330066;
}

.tm-text {
    color: #D6F7EC;
}

.tm-mono {
    font-family: 'Courier New', Courier, monospace;
}

.tm-layered {
    position: relative;
    bottom: 0;
    right: 0;
}

.tm-avatar {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
}

midi-player {
    color: black;
}

midi-visualizer {
    background-color: white;
}