@font-face {
    font-family: Symtext;
    src: url("Symtext.ttf");
}

body {
    font-family: "Courier New", Courier, monospace;
    word-spacing: 2px;
    letter-spacing: 1px;
    margin: 0;
    font-size: 50px;
}

.go-top {
    position: fixed;
    bottom: 2em;
    right: 2em;
    text-decoration: none;
    color: white;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 0;
    font-size: 0.9em;
    display: none;
    opacity: 0;
    z-index: 0;
}

.go-top:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

ul {
    list-style: none;
    padding: 0px;
}

li {
    margin: 20px 0 100px 0;
}

#main a,
footer a,
nav li a {
    color: #000;
    background-color: transparent;
    padding: 0 0 1px 2px;
    font-weight: bold;
    text-decoration: none;
}

#main a:hover,
footer a:hover,
nav li a:hover,
.active {
    color: #00FF00;
    background-color: #000;
    padding: 0 0 1px 2px;
    text-decoration: none;
}

footer a,
nav li a {
    font-family: Symtext;
}

nav ul {
    font-family: Symtext;
    padding: 0;
    margin: 0 0 100px 0;
    font-size: 0.8em;
}

nav li {
    display: inline-block;
    padding: 0 5px;
    margin: 0 20px 0 0;
    line-height: 40px;
}

#main a:before,
nav li a:before {
    content: ">_";
}

.navbar-header {
    width: 100px;
    height: 100px;
    margin: 0 0 50px 0;
}

.navbar-header a,
.navbar-header a img,
#main img {
    width: 100%;
}

#wrapper {
    width: 98vw;
    margin: 2vw 30px;
}

#main {
    width: 100%;
    line-height: 1.5;
}

footer {
    margin: 100px 0 0 0;
    opacity: 0.8;
}

i {
    font-family: Symtext;
    font-weight: bold;
    font-style: normal;
    font-size: 0.8em;
}

.shout {
    font-size: 1.5em;
    font-weight: bold;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 45vh;
    min-height: 20vh;
    max-height: 500px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#mock iframe {
    display: none;
    transform: scale(0.8);
    height: 960px;
    width: 420px;
    margin: -80px 0 0 0;
}

input {
    height: 2em;
    min-height: 4rem;
    width: 100%;
    margin: 0 0 10px 0;
    border: 1px solid #000;
}

textarea {
    width: 100%;
    border: 1px solid #000;
}

input[type="submit"] {
    cursor: pointer;
}

#ss-submit {
    width: 100%;
    height: 2.5em;
    border: 0;
    font-family: "Courier New", Courier, monospace;
    font-size: 4rem;
    background-color: #000;
    color: #fff;
}

@keyframes shift {
    0% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(20px);
    }
    100% {
        transform: translateX(0px);
    }
}

.loading {
    margin: 50px 0 0 0;
    width: 20px;
    height: 5px;
    background-color: #000;
    animation: shift 1s infinite ease;
}

#socialbtns {
    display: block;
    bottom: 15px;
    left: 20px;
}

#socialbtns div {
    float: left;
    margin-right: 5px;
}

@media screen and (min-device-width: 640px) {
    body {
        font-size: 16px;
    }
    .navbar-header {
        width: 60px;
        height: 60px;
    }
    nav ul {
        margin: 0 0 50px 0;
    }
    #main {
        max-width: 700px;
        min-height: 40vh;
    }
    #wrapper {
        width: 92vw;
        margin: 4vw;
    }
    .go-top {
        bottom: 4vw;
        right: 4vw;
        opacity: 1;
        z-index: 1000;
    }
    #ss-submit {
        width: 150px;
        font-size: 1rem;
    }
    input,
    textarea {
        width: 60%;
        min-height: 1rem;
    }
}