@font-face {
    font-family: 'bariol_regular';
    src: url('../fonts/bariol_regular-webfont.eot');
    src: url('../fonts/bariol_regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/bariol_regular-webfont.woff') format('woff'),
         url('../fonts/bariol_regular-webfont.ttf') format('truetype'),
         url('../fonts/bariol_regular-webfont.svg#bariol_boldbold') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'bariol_bold';
    src: url('../fonts/bariol_bold-webfont.eot');
    src: url('../fonts/bariol_bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/bariol_bold-webfont.woff') format('woff'),
         url('../fonts/bariol_bold-webfont.ttf') format('truetype'),
         url('../fonts/bariol_bold-webfont.svg#bariol_boldbold') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'bariol_light';
    src: url('../fonts/bariol_light-webfont.eot');
    src: url('../fonts/bariol_light-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/bariol_light-webfont.woff') format('woff'),
         url('../fonts/bariol_light-webfont.ttf') format('truetype'),
         url('../fonts/bariol_light-webfont.svg#bariol_lightlight') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'bariol_thin';
    src: url('../fonts/bariol_thin-webfont.eot');
    src: url('../fonts/bariol_thin-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/bariol_thin-webfont.woff') format('woff'),
         url('../fonts/bariol_thin-webfont.ttf') format('truetype'),
         url('../fonts/bariol_thin-webfont.svg#bariol_thinregular') format('svg');
    font-weight: normal;
    font-style: normal;

}

* {
  box-sizing: border-box;
}

/*=========================================
Base
=========================================== */
body {
	margin: 0;
	font:16px/1 'bariol_regular',sans-serif;
	color:#fff;
	-webkit-font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}

.wrapper {
	min-height: 100vh;
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	background: -webkit-linear-gradient(90deg, #DE6262 10%, #FFB88C 90%); /* Chrome 10+, Saf5.1+ */
	background:    -moz-linear-gradient(90deg, #DE6262 10%, #FFB88C 90%); /* FF3.6+ */
	background:     -ms-linear-gradient(90deg, #DE6262 10%, #FFB88C 90%); /* IE10 */
	background:      -o-linear-gradient(90deg, #DE6262 10%, #FFB88C 90%); /* Opera 11.10+ */
	background:         linear-gradient(90deg, #DE6262 10%, #FFB88C 90%); /* W3C */
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

.header {
	padding-bottom:180px;
	text-align:center;
}

a {
	text-decoration:none;
	color:#fff !important;
}

a:hover {
	text-decoration: none;
	border-bottom: 1px dashed #fff;
}

.text a {
	border-bottom: 2px dashed #fff;
}

.text a:hover {
	text-decoration: none;
	border-bottom: 2px dashed #fff;
}

p {
	line-height: 1.8;
	margin-bottom:30px;
	font-size: 16px;
}

.text {
	font-family: 'bariol_regular';
	font-size: 48px;
	color: #FFFFFF;
	line-height: 53px;
}

.name {
	font-family: 'bariol_bold';
}

footer {
	/* place on the bottom */
	position: sticky;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #58323c;
	display: grid;
	place-items: center;
	padding: 50px;
}

@media (max-width: 1000px) {
	.header {
		padding-bottom: 120px;
	}
	p {
		padding: 0 10px;
	}
	.text {
		font-size: 36px;
		line-height: 38px;
		padding: 0 10px;
	}
}

@media (max-width: 500px) { 
	.header {
		padding-bottom: 80px;
		text-align: center;
	}
	p {
		padding: 0 10px;
	}
	.text {
		font-size: 24px;
		line-height: 27px;
		padding: 0 10px;
	}
}