@import url("reset.css");
@import url("../fonts/fonts.css");

body {
    min-height: 100vh;
    font-family: 'DIN', sans-serif;
    background: #1e0035;
    background: linear-gradient(#140023, #1e0035 25%);
    color: #fff;
}

div#bg {
    z-index: -1;
    background-size: cover;
    background-position: bottom right;
    background-image: url(../img/bg.jpg);
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
}

header {
    padding: 2%;
    background: #fff;
    color: #000;
}

header h1,
header h2,
header h3 {
    text-align: center;
}

header h3 {
    font-size: 1.5rem;
}

header h1 img {
    height: 7rem;
    display: block;
    margin: 0 auto;

}

header h1 {
    font-size: 2.3rem;
}


header h1 span {
    display: block;
    font-size: 4rem;
    color: #000;
    vertical-align: middle;
    font-family: 'DIN', sans-serif;
}
header h1 span em {
    font-style: italic;
}

body>section {
    z-index: 10;
    min-width: 650px;
    max-width: 25%;
    margin: 0 auto;
}

footer {
    padding: 10px;
    font-family: sans-serif;
    text-align: center;
    font-size: 0.6rem;
}


main {
    background: #000;
    position: relative;
    padding-top: 35%;
}

main.video {
    padding-top: 56.25%;
}

main iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

nav {
    background: #eee;
    color: #000;
}

nav li a:hover {
    background: linear-gradient(#f5f5f5, #fff);
}

nav li a {
    background: linear-gradient(#fff, #eee);
    padding: 3%;
    display: block;
    position: relative;
    height: 40px;
}

nav li a img {
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    width: 24%;
}

nav li a span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 94%;
    display: block;
    text-align: right;
    color: #000;
    font-size: 1.5rem;
}

@media only screen and (max-width: 699px) {
    body>section {
        min-width: auto;
        max-width: 80%;
    }
    header h1 span em {
       font-size: 2rem;
    }
}
