/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
@import url(https://fonts.googleapis.com/css?family=Amiko:400,700,600);

@keyframes hoverHeader{
    0%{
        -webkit-transform:scale(1);
        -moz-transform:scale(1);
        -ms-transform:scale(1);
        -o-transform:scale(1);
        transform:scale(1)
    }
    50%{
        -webkit-transform:scale(1.05);
        -moz-transform:scale(1.05);
        -ms-transform:scale(1.05);
        -o-transform:scale(1.05);
        transform:scale(1.05)
    }
    100%{
        -webkit-transform:scale(1);
        -moz-transform:scale(1);
        -ms-transform:scale(1);
        -o-transform:scale(1);
        transform:scale(1)
    }
}

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

body {
    background: url(../images/bg.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    color: #fff;
    text-align: center;
    padding: 100px 0;
    font-family: 'Amiko', sans-serif;
}

header h1 {
    font-size: 30px;
}

header a {
    font-size: 15px;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    padding: 0 10px;
    -moz-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    -webkit-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}

header a.active {
    border-bottom: 5px solid #fff;
}

header a:hover {
    color: #fff;
    opacity: .5;
}

.container {
    width: auto;
    margin: 0 auto;
    padding: 0 15px;
}

.container .entry {

}

.container .entry h2 {
    padding: 100px 0 20px 0;
    /*font-weight: 400;*/
    font-size: 30px;
}

.container .entry .videoWrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
    width: 80%;
    margin: 0 auto;
}
.container .entry .videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.container .links {
    padding: 100px 0;
}

.container .links a {
    font-size: 18px;
    display: block;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    padding-bottom: 20px;
    -moz-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    -webkit-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}

.container .links a:hover {
    color: #fff;
    opacity: .5;
}

.container .about {
    text-align: left;
    padding: 100px 0;
}

.container .about p {
    font-size: 18px;
    line-height: 23px;
    padding-bottom: 20px;
    text-shadow: 5px 5px rgba(0,0,0,.3);
}

.container .about p:first-child {
    text-indent: 60px;
}

.container .about .contact h2 {
    font-size: 60px;
    padding: 50px 0 20px 0;
}

.container .about .contact a{
    color: #fff;
}

@media (min-width: 768px) {
    header h1 {
        font-size: 50px;
    }

    header a {
        font-size: 30px;
        padding: 0 20px;
    }

    .container .about p {
        font-size: 20px;
        line-height: 30px;
    }

    .container .links a {
        font-size: 30px;
    }

    .container {
        width: 750px;
    }
}

@media (min-width: 992px) {
    header h1 {
        font-size: 100px;
    }

    header a {
        font-size: 60px;
    }

    .container {
        width: 970px;
    }

}

@media (min-width:1200px) {
    .container {
        width: 1170px;
    }

}