/*========================================
=           RESET CSS                  =
========================================*/

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}



/*========================================
=          CSS FOR GLOBAL TIMBER         =
========================================*/

/*-------------- Video background opacity -------------*/
.overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.75);
    top: 0;
    left: 0;
    z-index: 0;
}





@font-face {
    font-family: "museo-slab";
    src: url('/resources/MuseoSlab-300.otf') format("opentype");
}

body{
    font-family: "museo-slab";
}
h1{
	text-transform: uppercase;
	color: white;
	font-size: 22px;
	padding-bottom: 150px;
}
.outer-wrap{

}

ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 600px;
    margin: 0 auto;
	opacity: 0.9;
}
.video-container{
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    height: 100%;
    width: 100%;
    z-index: -1;
}
video{
    min-width: 100%;
    min-height: 100%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.logo{
    text-align: center;
    padding-top: 50px;
    position: relative;
    z-index: 2;
}
.logo img{
    height: 100px;
}


.content{
    top: 55%;
    transform: translateY(-50%);
    position: absolute;
    width: 100%;
    text-align: center;
}


li{
    display: inline-block;
    padding: 20px;
}


a{
    color: white;
    padding: 5px;
    text-decoration: none;
    font-size: 23px;
}
a:hover{
	text-decoration: underline;
}


.bottom-link{
    padding-top: 150px;
	opacity: 0.9;
}


@media screen and (max-width: 480px) {
	ul{
		display: block;
	}
	h1{
		padding-bottom: 25px;
		margin-top: 10px;
		font-size: 25px;
	}
    li{
        display: block;
		padding: 7px;
    }
    a{
        font-size: 17px;
    }
    li a{
        color: black;
        display: inline-block;
        padding: 15px;
        width: 230px;
        box-sizing: border-box;
        border: 1px solid rgba(0,0,0,0.4);
        font-weight: bold;
    }
	.logo{
		padding-top: 40px;
	}
    li span{
        display: inline-block;
        width: 230px;
        background-color: white;
        position: relative;
        z-index: 1;
        padding: 5px;
    }
    .bottom-link{
        padding-top: 25px;
    }

	.logo img {
	    height: 75px;
	}

}
