@font-face {
    font-family: 'Boogie';
    src: url('../fonts/BoogieSchool-Sans.eot');
    src: url('../fonts/BoogieSchool-Sans.eot?#iefix') format('embedded-opentype'), url('../fonts/BoogieSchool-Sans.woff2') format('woff2'), url('../fonts/BoogieSchool-Sans.woff') format('woff'), url('../fonts/BoogieSchool-Sans.ttf') format('truetype'), url('../fonts/BoogieSchool-Sans.svg#BoogieSchool-Sans') format('svg');
    font-weight: bold;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
}

body {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    background: white;
}

.getit {
    position: absolute;
    top: 0;
    left: 2%;
    width: 42%;
/*     height: auto; */
    height: 100%;
    text-align: left;
    font-family: 'Boogie', sans-serif;
    font-style: normal;
    font-weight: normal;
    padding: 0 2% 0 0;
}

.marqueeElement {
    width: 100%;
    height: auto;
    position: absolute;
    top: 42em;
    left: 1em;

    animation: marquee 15s linear infinite;
}

.marqueeElement:hover {
    animation-play-state: paused;
}

/* Make it move! */
@keyframes marquee {
    0%   { top:   42em }
    100% { top: -21em }
}


.getit h1 {
    color: white;
    font-family: 'Boogie', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 1.25em;
    line-height: 1.1;
    margin: 1em 0;
}

.getit a {
    color: white;
    width: auto;
    display: block;
    text-decoration: underline;
    font-size: 1.25em;
    line-height: 1.1;
}

.phone {
	color: white;
	width: auto;
    display: block;
	font-size: 1.25em;
	line-height: 1.1;
	margin: .25em 0;
}

body:hover {
    background: black;
}

#clock {
    position: relative;
    width: 50%;
    height: 100%;
    margin: 0 auto;
    background: none;
    list-style: none;
    
    margin-top: 2%;
}

#clock:after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

#seconds, #minute, #hour {
    position: absolute;
    width: 6%;
    height: 100%;
    top: 0px;
    left: 50%;
    -webkit-transition: .5s;
    transition: .5s;
}

#seconds {
    /*background: url(../img/secondhand.svg);*/
    background-repeat: no-repeat;
    z-index: 3;
    display: none;
}

#minutes {
    /*background: url(../img/minutehand.svg);*/
    background-repeat: no-repeat;
    z-index: 2;
    display: none;
}

#hour {
    /*background: url(../img/hour.svg);*/
    background-size: 50% auto;
    background-repeat: no-repeat;
    z-index: 1;
}

#hour svg {
    width: 50%;
    height: auto;
    float: right;
}

#hour svg path {
    fill: black;
}

#hour.invert svg.normal {
    display: none;
}

#hour.invert svg.inverted {
    display: block;
}

#hour.norm svg.normal {
    display: block;
}

#hour.norm svg.inverted {
    display: none;
}

body:hover #hour svg path {
    fill: #00ff00;
}

body.support:hover #hour svg path {
    fill: #00ff00;
}

img.supporter { display: block; width: 90%; }

img.supporter {
  -webkit-filter: blur(5px);
  filter: blur(5px);
}

.huh {
    display: none;
}
body.selected-works {
    background: black;
}
body.selected-works:hover {
    background: black;   
}

body.selected-works #clock { 
    display: none;
}

body.selected-works .getit {
    width: 100%;
}

body.selected-works .getit .left-panel {
    width: 40%;
    float: left;
    height: 100vh;
}
body.selected-works .getit .right-panel {
    width: 50%;
    padding: 0 0 0 6%;
    float: left;
    height: 100vh;
}
body.selected-works .right-panel p {
    color: white;
    font-family: 'Boogie', sans-serif;
    text-transform: uppercase;
    font-style: normal;
    font-weight: normal;
    font-size: 1.25em;
    line-height: 1.1;
    margin: 1em 0 1.5em;
    display: inline-block;
    float: left;
}
body.selected-works .right-panel a {
    border: 1px solid;
    width: auto;
    padding: .25em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    float: right;
    margin: .75em .125em;
}
body.selected-works .right-panel a:hover {
    color: black;
    background: white;
    border-color: inherit;
}
body.selected-works .pdf-controls {
    display: block;
}
body.selected-works .pdf-mobile {
    display: none;
}
.screensaved {
	position: fixed;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
}
.marquee {
	display: block;
	left: 0;
	position: absolute;
	top: 0;
	z-index: 1000;
}
svg {
	display: block;
}
.logo {
	fill: #fff;
}

@media only screen and (max-width: 768px) {
    body {
      background: black;
      
      overflow-y: auto;
    }
    body.selected-works .resize {
        display: none;
    }
    body #hour svg path {
        fill: #00ff00;
    }
    #clock {
        width: 100%;
/*         height: 60%; */
height: auto;
        margin-top: 20%;
/*         margin-top: 0; */
    }
    #hour {
        left: 48%;
        
        height: 60%;
    }
    #hour svg {
        width: 60%;
    }
/*
    #clock:after {
        padding-top: 100%;
    }
*/
    #clock:after {
        padding-top: 30%;
    }
    .getit {
        width: 96%;
        top: auto;
        bottom: 2%;
        position: relative;
    }
    .getit h1 {
        font-size: 1.25em;
        padding: .5em .5em 0 0;
    }
    .getit a, .phone {
        font-size: 1.25em !important;
    }
    .huh {
        color: white;
        position: absolute;
        bottom: 0;
        left: 0;
        padding: .5em;
        display: block;
        z-index: 1000;
        text-decoration: none;
        font-size: 1.5em;
    }
    .getit:focus {
        outline: none;
        box-shadow:none !important;
        border:none !important;
    }
    .arrowed {
	    bottom: 10%;
		right: 50%;
    }
    body.selected-works .getit {
        width: 96%;
        top: auto;
        bottom: inherit;
    }
    body.selected-works .getit .left-panel {
        width: 98%;
        height: auto;
        padding: 0;
        overflow-x: hidden;
    }
    body.selected-works .getit .right-panel {
        width: 98%;
        height: auto;
        padding: 0;
        overflow-x: hidden;
        padding: 0 2% 4% 0;
    }
    body.selected-works .getit .right-panel iframe {
        width: 100% !important;
    }
    body.selected-works .getit .left-panel {
        padding-bottom: 15%;
    }
    body.selected-works .pdf-controls a.download {
        display: none;
    }
    body.selected-works .right-panel p {
        margin: 1em 0 .5em;
    }
    body.selected-works .pdf-mobile a {
        float: left;
    }
}

@media only screen and (min-height: 900px) {
    #clock {
        margin-top: 12%;
    }
}
