@import('normalize.css');

body {
    background: #000000;
    height: 100%;
    margin: 0;
    overflow: hidden;
    position: absolute;
    width: 100%;
    font-family: 'Noto Sans', Helvetica, sans-serif;
}

video {
    height: 100%;
    width: 100%;
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
}

#puppygif {
    position: fixed;
    top: 50%;
    left: 50%;
    cursor: pointer;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}

@media all and (orientation:portrait) {
    #puppygif {
        width: 100%;
    }
}
@media all and (orientation:landscape) {
    #puppygif {
        height: 100%;
    }
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 25px;
    background-color: #000;
}

.footer a {
    float: left;
    padding: 5px 10px;
    color: #aaa;
    font-size: 10px;
    text-decoration: none;
    background-color: #000;
    opacity: 0.5;
    transition: background 200ms;
}

.footer a.right {
    float: right;
}

.footer a:hover {
    background-color: #fff;
    opacity: 0.5;
    color: #444;
}

.geomicon {
    fill: #999;
}
.geomicon:hover {
    fill: #000;
}

.space {
    position: absolute;
    z-index: 100;
    border: 1px solid #fff;
    padding: 2px 28px;
    bottom: 50px;
    left: calc(50% - 50px);
    color: #fff;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 4px;
    opacity: 0.4;
    border-radius: 2px;
    -webkit-animation: bounce 300ms infinite alternate;
    -moz-animation: bounce 300ms infinite alternate;
    animation: bounce 300ms infinite alternate;
}

@-webkit-keyframes bounce {
  0%   { transform: translateY(0); }
  100%   { transform: translateY(4px); }
}

@-moz-keyframes bounce {
  0%   { transform: translateY(0); }
  100%   { transform: translateY(4px); }
}

@keyframes bounce {
  0%   { transform: translateY(0); }
  100%   { transform: translateY(4px); }
}
