html, body{
  margin: 0 auto;
	height: 100%;
	font-family: 'Roboto', sans-serif;
	font-weight: 100;
}

#header {
	background: url(../assets/image2.jpg);
	height: 100vh;
	width: 100vw;
	background-size: cover;
	display: flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	margin: 0 auto;
}
img.scalable {
	height: auto !important;
	width: auto !important;
	max-width: 100%;
	border-radius: 0px;
}

h1, p {
	color: #fff;
	font-family: 'Roboto', sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 0.8;
}

h1 {
	font-size: 40pt;
	text-align: center;
	line-height: .5em;
}

p {
	font-size: 18pt;
	text-align: center;
	line-height: 1em;
}

button {
  padding: 12px 19px;
  background:#e1cfb5;
  opacity: 0.8;
  color: #666;
  border: 2px solid grey;
  font-size: 15px;
  border-radius: 6px;
  transition: all .3s ease;
}

button:hover {
  background: #ad2608;
  color: white;  
}
@media (max-width: 600px) {
  h1 {
      font-size: 30pt;
    }
  p {
    font-size: 18pt;
    font-weight: 300;
  }
}

@media (max-width: 364px) {
  h1 {
      font-size: 30pt;
    }
  p {
    font-size: 15pt;
    font-weight: 300;
  }
}