html {
	height: 100%;
    font-size: 100%; /* 1 */
    -ms-text-size-adjust: 100%; /* 2 */
    -webkit-text-size-adjust: 100%; /* 2 */
    -webkit-font-smoothing: antialiased; 
}

body {
	width: 100%;
    height: 100%;
	margin: 0;
	font-size: 1.125rem;
    line-height: 1.5em;
    color: #fff;
    position: relative;
}

::selection {
  background: #22c5ef; /* WebKit/Blink Browsers */
}
::-moz-selection {
  background: #22c5ef; /* Gecko Browsers */
}

h1{
	font-size: 5rem;
    line-height: 1em;
    font-family: 'Playfair Display', serif;
    font-weight: 300;
    margin: 0;
}

h2{
	font-size: 3rem;
	line-height: 1em;
	font-family: 'Playfair Display', serif;
	font-weight: 300;
	margin: 0.25em 0 2em;
}

h2:before {
	content: "";
    display: inline-block;
    width: 80px;
    height: 6px;
    margin-right: 0.5em;
    background: #fff;
    opacity: 0.2;
  	top: -12px;
    position: relative;
}

h3 {
	font-size: 1.5rem;
	line-height: 1.25em;
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;
}

p {
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
}

a {
	color: #78c7da;
	transition: all 0.25s;
}

a:hover{
	color: #a4edff;
}

.wrapper {
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
	
	-webkit-align-items: center;
    -moz-align-items: center;
    -ms-flex-align: center;
    align-items: center;

	overflow: auto;
	height: 100vh;
    background: linear-gradient(#2c658c, #194063);
    border: 30px solid #e2eef1;
    box-sizing: border-box;
}

.interior {
	width: 100%;
    max-width: 1050px;
    padding: 2em;
    box-sizing: border-box;
    overflow: auto;
}

@media only screen and (max-width:1050px){
	.wrapper {
		display: block;
	}
	.interior {
		padding: 4em 2em;
	}
}

@media only screen and (max-width:750px){
	h1 {
		font-size: 2.55rem
	}
	h2 {
		font-size: 2rem;
	}
	h2:before {
		display: none;
	}
	h3 {
		font-size: 1.125rem;
	}
	p {
		font-size: 1rem;
	}
	.wrapper {
		border: 20px solid #e2eef1;
	}
	.interior {
		padding: 4em 1.5em;
	}
}

@media only screen and (max-width:380px){
	h1 {
		font-size: 2.3rem
	}
	h2 {
		font-size: 1.8rem;
	}
}
