body {
    background-color: black;
    color: white;
    margin-left: 4%;
    margin-right: 30%;
    margin-top: 3%;
    margin-bottom: 1%;
    font-family: andale mono, monospace;
    font-size: 2em;
    line-height: 1.3em;
}

::selection {
  background: cyan;
}

.container {
    padding-top: 1.5em;
    padding-bottom: 2em;
    overflow: hidden;
}

.container li {
    list-style: square;
}

.colLeft {
    width: 48%;
    float: left;
}

.colRight {
    width: 48%;
    float: right;
}

.fancybox {
    width: 48.5%;
}

#icon {
    width: 25%;
}

#logotext {
    width: 70%;
}

img {
    position: inherit;
    width: 100%;
}

h2 {
    font-family: avenir, arial, sans-serif;
    letter-spacing: .1em;
}


a {
    color: cyan;
    text-decoration: none;
}

a:hover {
    text-decoration: line-through;
    
}

a:hover img {
    opacity: .75;
    -webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

u {
    line-height: 2em;
}

footer {
    font-size: .2em;
}

/* navigation menu */

nav {
    position: fixed;
    right: 3%;
    top: 6%;
    font-size: .4em;
    text-align: right;
    line-height: 2em;
}

nav li {
    list-style: none;
}

nav a {
    color: white;
}

nav img {
    width: 50%;
}

#title {
    text-align: center;
}

/* responsive video frame */

.video {
    position: relative;
	padding-bottom: 73%; 
	padding-top: 0;
	height: 0;
}

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

/* screen responsiveness */

@media screen and (max-width: 1000px) {
    
    body {
        font-size: 1.8em;
    }
    
}

@media screen and (max-width: 870px) {
    
    body {
        font-size: 1.3em;
    }
    
    nav {
        font-size: .7em; 
        width: 25%;
        top: 0;
        right: 3%;
    }
    
    #title {
        text-align: right;
    }
    
    #title h1 { 
        display: none; 
    }
    
    #title img {
        position: inherit;
        margin-top: 10%;
        
    }
}

@media screen and (max-width: 650px) {
    
    nav {
        display: none;
    }
    
    body {
        margin-right: 4%;
        font-size: 1em;
        line-height: 1.5em;
    }
    
    #icon {
        width: 40%;
        padding-top: 3%
    }
}

@media screen and (max-width: 480px) {
    .fancybox {
        width: 100%;
        padding-bottom: 3%;
        
    }
}