/*sections------------------------------------------------------------------- */
body {
    font-family: Times, serif;
    background: black;
    color: #FFF;
}

#wrapper {
    max-width: 50rem;
    margin: 0 auto;
}

.banner, main {
    margin: 0 1rem;
}

.about {
    color: #b574f7;
}

.contact {
    color: #4fa682;
}

/*3d stuff------------------------------------------------------------------- */
.stage {
    width: 100%;
    height: 200px;
    perspective: 50rem;
}

.both {
    width: 365px;
    height: 150px;
    margin: 0 auto;
    position: relative;
    top: 50px;
    transform: rotate3d(1, 1, 0.5, -23deg);
    transform-style: preserve-3d;
}

.front {
    /* Evil hack here to get some blurring on the text */
    color: transparent;
    text-shadow: #FFFFFFDD 0 0 0.01rem;
    position: fixed;
}

.back {
    color: transparent;
    text-shadow: #124f98 0 0 0.1rem;
    position: fixed;
    transform-origin: left;
    transform: rotate3d(0, 1, 0, 75deg);
}