body {
    background-color: #0b0b0f;
    color: #eee;
    font-family: 'Comic Sans MS', sans-serif;
    text-align: center;
    min-height: 100vh;
}

a {
    color: #FFAAFF;
}

a:visited {
    color: #FF00FF;
}

.logo {
    margin-top: 2em;
}

#datacenter {
    cursor: pointer;
    color: #FFAAFF;
}

#datacenter-popover {
    height: 50%;
    width: 35%;
}

#datacenter-popover img {
    vertical-align: middle;
    max-width: auto;
    max-height: 100%;
}

#crank, .logo {
    cursor: pointer;
}

iframe, .warnerbrost {
    margin-top: 1em;
}

header {
    max-width: 75%;
}

h1 {
    font-size: 3em;
}

button {
    padding: 10px 20px;
    background-color: #ff4444;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.sister-button {
    position: fixed;
    transition: transform 2.5s linear;
    z-index: 1000;
}

.hidden {
    display: none;
}

/* Shamelessly yoinked from: https://stackoverflow.com/a/14859567 */
.spin {
    margin-top: 2em;
    margin-bottom: 2em;
    -webkit-animation-name: spin;
    -webkit-animation-duration: 4000ms;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: spin;
    -moz-animation-duration: 4000ms;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: spin;
    -ms-animation-duration: 4000ms;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    
    animation-name: spin;
    animation-duration: 4000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
@-ms-keyframes spin {
    from { -ms-transform: rotate(0deg); }
    to { -ms-transform: rotate(360deg); }
}
@-moz-keyframes spin {
    from { -moz-transform: rotate(0deg); }
    to { -moz-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}