/* Reset
  =============== */

// Reset box sizing to border box
html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

// Remove figure margin
figure {
    margin: 0;
}

/* Normalize
  =============== */

html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}


body {
    margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden],
template {
    display: none;
}

a:active,
a:hover {
    outline: 0;
}

b,
strong {
    font-weight: bold;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

img {
    border: 0;
    max-width: 100%;
}

svg:not(:root) {
    overflow: hidden;
}

hr {
    box-sizing: content-box;
    height: 0;
}

pre {
    overflow: auto;
}

button[disabled],
html input[disabled] {
    cursor: default;
}


button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}



/* Style
  =============== */
// Headings
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  font-weight: 500;
  line-height: 1.2;
  color: #333;
  letter-spacing: 0.5px;
  font-family: 'Poppins', Helvetica, Arial;
}

h1 {
    font-size: 75px;
    margin: 0 0 0 0;
    color: #fff;

}

html {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Poppins', Helvetica, Arial;
    height: 100%;
}

body {
    color: #666;
    background: url(../images/bg.jpg) no-repeat bottom right;
    background-size: cover;
}

.container {
    top: 40%;
    position: fixed;
    text-align: center;
    width: 100%;
}

.logo {
    display: block;
	margin-top: -10%;
}

.logo img {
    width: 30em;
    height: auto;
}