	html {
	  font-family: sans-serif; /* 1 */
	  line-height: 1.15; /* 2 */
	  -ms-text-size-adjust: 100%; /* 3 */
	  -webkit-text-size-adjust: 100%; /* 3 */
	  text-size-adjust: 100%;
	  box-sizing: border-box;
	  margin: 0;
	}

	*,
	*:before,
	*:after {
	  -webkit-box-sizing: border-box;
	  -moz-box-sizing: border-box;
	  box-sizing: border-box;
	}
	body {    
    position: relative;    
	margin: 0;
	background: url(img/bg.jpg) center bottom no-repeat;
	background-size:  cover;
	display: flex;
	flex-direction: column;
	font-family: 'Montserrat', sans-serif;
	}
	.container {
		padding-left: 15px;
		padding-right: 15px;
	}
	body .container {
		min-height: 100vh;
		display: flex;
    	flex-direction: column;
	}
	img {
		max-width: 100%;
	}
	.logo {
		padding-top: 30px;
		text-align: center;
	}
	.logo img {
		display: block;
		margin: auto;
	}
	.experience-text {
		margin-top: 15px;
		text-align: center;
		padding-bottom: 30px;
	}
  .text {
  	margin: auto;
   	color: #FFF;
   	text-align: center;
  }
  .text h1 {
  	margin: 0;
  	font-size: 72px;
  	text-transform: uppercase;
  	line-height: normal;
  }
  .text p {
  	font-size: 22px;
  	font-weight: 600;
  	padding-bottom: 30px;
  }
  .uppercase {
  	text-transform: uppercase;
  }

  @media only screen and (max-width: 767px) { 
  	.text h1 {
	  	font-size: 40px;
	  }
	  .text p {
	  	font-size: 18px;
	  }
  }