@font-face {
   font-family: 'Untitled';
   src: url('/fonts/untitled-sans-web-regular.eot');
   src: url('/fonts/untitled-sans-web-regular.eot?#iefix') format('embedded-opentype'),
        url('/fonts/untitled-sans-web-regular.woff2') format('woff2'),
        url('/fonts/untitled-sans-web-regular.woff') format('woff');
   font-weight: 400;
   font-style: normal;
}

body {
    background-color: white;
    color: black;
    font-family: 'Untitled', sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 100%;
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
    overflow-x: hidden;
    padding: 0;
    margin: 0;
    cursor: none;
}

h1 {
    margin: 0 2em;
    padding: 0;
    font-weight: normal;
    font-size: 1.25em;
    text-transform: uppercase;
}

a {
    cursor: none;
}

header {
    margin: 0 0 2em 0;
    padding: 0.75em 0;
    position: fixed;
    width: 100%;
    background-color: white;
    border-bottom: 2px solid black;
    z-index: 100;

    -webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 1s; /* Firefox < 16 */
    -ms-animation: fadein 1s; /* Internet Explorer */
    -o-animation: fadein 1s; /* Opera < 12.1 */
    animation: fadein 1s;
}

header h2 {
    position: absolute;
    top: 0.5em;
    right: 2em;
    font-weight: normal;
    font-size: 1.25em;
    margin: 0;
    padding: 0;
}

footer {
    text-align: center;
    margin-bottom: 1em;
}

#content {
    padding: 2em;
    transition: padding 0.3s;
    transition-timing-function: ease-out;
}

a:link, a:visited {
    text-decoration: none;
    color: black;
}

a:hover {
    color: #777;
}

ul {
    padding: 0;
    margin: 2em 0;
}

li {
    clear: both;
    list-style: none;
    padding: 0 0 8em 0;
}

.info {
    clear: both;
    width: 50%;
    margin: 1em auto;
    text-align: center;
}

.info em {
    text-decoration: underline;
    font-style: normal;
}

.info .credit {
    color: #d3d3d3;
}

.wide {
    clear: both;
    max-width: 100%;
}

.centered {
    clear: both;
    width: 75%;
    margin: 1em auto;
    text-align: center;
}

.half {
    width: 50%;
    margin: 1em auto;
}

.quarter {
    width: 25%;
}

.portrait {
    height: 80vh;
    margin: 0 auto;
    width: auto;
}

.two-wrapper {
    width: 100%;
    margin-top: 1em;
}

.two {
    float: left;
    max-width: 48%;
    margin: 0 0 1em 0;
}

.two:first-child {
    margin-right: 4%;
}

#info {
    font-size: 1.25em;
    position: fixed;
    top: 0;
    left: 2000px;
    width: 50vw;
    height: 100%;
    background-color: #ccc;
    color: black;
    z-index: 5;
    transition: left 0.3s;
    transition-timing-function: ease-out;
    margin: 0;
    border-left: 2px solid black;
}

#info.visible {

}

#info p {
    padding: 6em 2em;
}

a.up-target {
    display: inline-block;
    padding-left: 1em;
}

.cursor {
    position: fixed;
    background-color: white;
    pointer-events: none;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    transition: transform 350ms ease;
    transform: translate(-50%, -50%) scale(.3);
    z-index: 999;
    mix-blend-mode: difference;
}

.cursor.z {
    transform: translate(-50%, -50%) scale(0.6);
}

a.close-target {
    position: absolute;
    top: 3em;
    right: 4em;
    color: black;
}

a.close-target:after {
    font-size: 1.5em;
    content: '(×)';
    cursor: pointer;
}


@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@media only screen and (max-width:768px) {
    header {
    }

    header h1 {
        font-size: 1em;
        text-align: center;
        margin: 0;
    }

    header h2 {
        font-size: 1em;
        position: relative;
        top: auto;
        left: 0;
        text-align: center;
    }

    #content {
        padding-top: 4em;
    }

    .portrait {
        height: auto;
        max-width: 100%;
        width: auto;
    }

    .half {
        width: 100%;
    }

    .quarter {
        width: 100%;
    }

    .two {
        max-width: 100%;
        float: none;
        margin-bottom: 0.5em;
    }
}
