/* 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;
}


/* STYLES */

@font-face {
    font-family: 'cooper_blackregular';
    src: url('cooper_black_regular-webfont.woff2') format('woff2'),
         url('cooper_black_regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

html {
    font-size: 65%;
}

body {
    font-family: 'cooper_blackregular', cursive;
    font-size: 2.4rem;
    color: white;
}

.BackGround {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vW;
    height: 100vH;
    background: url(BackGround.jpg);
    background-position: 50% 50%;
    background-size: cover;
}

.Container {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
}

.Logo {
    width: 70%;
    max-width: 600px;
    height: auto;
    position: fixed;
    top: 6rem;
    left: 50%;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

h1 {
    display: none;
}

h2 {
    position: fixed;
    bottom: 0;
    left: 0;
    width: calc(100% - 4.0rem);
    text-align: center;
    font-size: 3.6rem;
    line-height: 3.8rem;
    padding: 2.0rem;
}

a:link,
a:visited,
a:hover,
a:focus {
    text-decoration: none;
    color: white;
}

a:hover,
a:focus {
    color: #ffcc00;
}

.Menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0;
    margin: 0;
}

.Menu li {
    display: inline-block;
    margin: 1.0rem 2.0rem 1.0rem 2.0rem;
    font-size: 2.5rem;
    line-height: 2.5rem;
}

.Menu li img {
    display: inline-block;
    vertical-align: bottom;
    margin-right: 0.5rem;
    width: 2.5rem;
    height: auto;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.Bullets {
    position: fixed;
    bottom: 10.0rem;
    left: 5%;
    width: 42.5%;
    text-align: left;
}

.ContactBox {
    position: fixed;
    bottom: 10.0rem;
    right: 5%;
    width: 37.5%;
    padding: 2.0rem 2.5% 2.0rem 2.5%;
    text-align: center;
}

h3 {
    color: white;
}

.Menu,
h2,
.ContactBox {
    color: #ffcc00;
    background: #005522;
}

@media only screen and (max-width: 649px) {
    html {
        font-size: 30%;
    }
}

@media only screen and (max-width: 420px) {
    html {
        font-size: 22%;
    }
}

@media only screen and (min-width: 650px) {
    html {
        font-size: 45%;
    }
}

@media only screen and (min-width: 1000px) {
    html {
        font-size: 65%;
    }
}