*,
*:before,
*:after {
    box-sizing: inherit;
}
html,
body {
	
    box-sizing: border-box;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    overflow-x: hidden;
    overflow-y: scroll;
    font-size: 62.5%;
    background: #0f1114;

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

body {
    overflow-x: hidden;
    color: #fff;
	font-family: 'Poppins';    
    font-size: 1.8rem;
    line-height: 1.55em;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0;
    text-rendering: optimizeLegibility;
    background: linear-gradient(135deg, #0b0d0f 0%,#020303 100%);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -moz-font-feature-settings: "liga" on;
			  background: url(background.jpg) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;

}

::selection {
    text-shadow: none;
    background: rgba(255, 54, 7, 0.8);
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.4s ease;
    background-color: transparent;
}

a:hover {
    color: rgb(255, 54, 7);
    transition: 0.2s ease;
    outline: 0;
}

h1,
h2 {
    margin: 0;
    color: #fff;
    font-weight: 700;
    text-rendering: optimizeLegibility;
}

section {
    height: 100%;
    max-width: 1000px;
    padding: 8vmin;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

h1 {
    font-size: 8rem;
    font-weight: 700;
    line-height: 1.05em;
}

h2 {
    font-size: 2.4rem;
    font-weight: 300;
    line-height: 1.5em;
    letter-spacing: 0.3px;
    color: #5a6472;
    margin: 5px 0 20px;
    text-indent: -1px;
}

hr {
    display: inline-block;
    margin: 35px 0 0 0;
    height: 8px;
    width: 100%;
    max-width: 100px;
    border: none;
    background: #fff;
}

p {
    max-width: 760px;
    margin: 25px 0;
    font-size: 1.8rem;
    line-height: 1.40em;
    font-weight: 300;
    color: #fff;
}

nav {
    margin: 2vw 0 0 0;
}

nav a {
    display: inline-block;
    margin: 0 2vw 0 0;
    letter-spacing: 0.5px;
    color: #fff;
    font-weight: 400;
}

@media (max-width: 800px) {
    h1 {
        font-size: 4rem;
    }
}
@media (max-width: 600px) {
    nav {
        display: flex;
        flex-direction: column;
    }
    nav a {
        margin: 10px 0 0 0;
    }
}