body {
    background-color: #000;
    background-image: url("../img/glow.png");
    background-repeat: repeat;
    background-position: center-top;
    background-attachment: fixed;

    font-family: 'Barlow', sans-serif;
    color: #cacaca;

    font-weight: 100;
}

/**
 * hero logo stuff
 */
 @keyframes hero-logo-circle {
    100% {
        transform: rotate(1turn);
    }
}

.hero-jumbotron {
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.65);
    background: transparent;
}

.hero-logo {
    flex: 0 0 300px;
    height: 260px;
    background-repeat: no-repeat;
    background-image: url("../img/logo.svg");
    background-size: 90px;
    background-position: center 50%;
    -webkit-user-select: none;
    user-select: none;
}

.hero-logo-circles {
    width: 250px;
    height: 250px;
    margin: auto;
    position: relative;
    max-width: 100%;
}

.hero-logo-circle {
    position: absolute;
    left: 0;
    top: 0;
    animation: hero-logo-circle 1s linear infinite;
    will-change: transform;
    max-width: 100%;
}
    /**
     * move each ring at a different speed
     */
    .hero-logo-circle:nth-child(1) {
        animation-duration: 30s;
    }
    .hero-logo-circle:nth-child(2) {
        animation-duration: 40s;
    }
    .hero-logo-circle:nth-child(3) {
        animation-duration: 50s;
    }
    .hero-logo-circle:nth-child(4) {
        animation-duration: 60s;
    }
    .hero-logo-circle:nth-child(5) {
        animation-duration: 70s;
    }
    .hero-logo-circle:nth-child(6) {
        animation-duration: 80s;
    }
    .hero-logo-circle:nth-child(7) {
        animation-duration: 90s;
    }
    .hero-logo-circle:nth-child(8) {
        animation-duration: 100s;
    }
    .hero-logo-circle:nth-child(9) {
        animation-duration: 110s;
    }
    .hero-logo-circle:nth-child(10) {
        animation-duration: 120s;
    }

.hero-logo-icon {
    flex: 0 0 200px;
    height: 155px;
    background-repeat: no-repeat;
    background-image: url("../img/logo.svg");
    background-position: center 50%;
    background-size: 42px;
    -webkit-user-select: none;
    user-select: none;
}

.hero-logo-icon-circles {
    width: 150px;
    height: 150px;
    margin: auto;
    position: relative;
    max-width: 100%;
}

/**
 * end of hero logo stuff
 */

h1 {
    color: #ffffff;
}
