body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

@import url('https://fonts.googleapis.com/css?family=Roboto:400,700');

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}

a {
    text-decoration: none;
}

.inner {
    margin: 0 auto;
    box-sizing: border-box;
    width: 100%;
    max-width: 960px;
    min-width: 960px;
}

.header {
    min-height: 860px;
    min-width: 960px;
    box-sizing: border-box;
    height: auto;
    background-image: url(../img/header-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    color: #ffffff;
    padding-top: 100px;
    font-weight: 700;
    text-align: center;
}

.header h2 {
    font-size: 3.125rem;
    text-transform: uppercase;
    margin:6.625rem 0 1rem 0;
}

.header h3 {
    font-size: 5rem;
    text-transform: uppercase;
    margin: 1rem;
}

.header p {
    display: block;
    margin: 1rem auto;
    max-width: 720px;
    font-size: 2rem;
    font-weight: 400;
}

.button {
    display: block;
    margin: 4rem auto;
    padding: 1rem;
    font-size: 1.5rem;
    color: #ffffff;
    background: #398e9c;
    border-radius: 0.25rem;
    width: 380px;
    transition: all .3s ease-out;
}

.button:hover {
    background: #061618;
    box-shadow: 0 0 40px #398e9c; 
}

.menu_header {
    width: 100%;
    display: flex;
    box-sizing: border-box;
    padding: 1rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    background: #061618;
    color: #ffffff;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
}

.menu_header > .inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.logo {
    margin: 0;
    padding: 0;
}

.menu {
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-direction: row;
}

.menu > li {
    display: block;
    margin-left: 1rem;
}

.menu > li > a {
    display: block;
    box-sizing: border-box;
    color: #ffffff;
    text-decoration: none;
    height: 50px;
    line-height: 50px;
    transition: all .3s ease-out; 
}

.menu > li > a:hover {
    color: #398e9c;
    border-bottom: 2px solid #398e9c;
}

main {
    text-align: center;
    color: #494949;
    font-size: 1.2rem;
    line-height: 1.5em; 
}

main h2 {
    display: block;
    text-align: center;
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #326169;
}

main section {
    padding: 5rem 0 
}

.gallery {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.gallery figure {
    padding: 0;
    margin: 0;
}

.gallery img {
    display: block;
    width: 300px;
    margin: 1rem 0;
    padding: 0;
    height: auto;
    border-radius: 1rem;
}

.section_other img {
    width: 50%;
    height: auto;
    border-radius: 50%;
}

#game {
    width: 100%;

}

canvas {
    margin: 0 auto;
}