body{
	margin: 0;
	display: flex;
	font-family: cursive;
}
.header {
  height: 100vh;
  display: flex;
  align-items: center;
  color: black;
}

.content {
  max-width: 40rem;
  padding-left: 1rem;
  padding-right: 1rem;
  margin: auto;
  text-align: center;
}
img{
	position:fixed;

	top:50%;
	left: 50%;	
	transform:translateX(-50%) translateY(-50%);
	z-index: -1;
}
img2{
	position:fixed;
    min-width: 100%;
	min-height: 100%;
	transform:translateX(-50%) translateY(-50%);
	z-index: 1;
}


.header-content h1 {
  font-size: 40px;
  margin-bottom: 0;
  font-family: 'fantasy', cursive;
}
.header-content p {
  font-size: 1.5rem;
  display: block;
  padding-bottom: 2rem;

}
.btn {
  background: #DD7C00;   
  color: #fff;
  font-size: 1.2rem;
  padding: 1rem 2rem;
  text-decoration: none;
}
@media (max-width: 960px) {
  .content {
    padding: 0 3rem 0 3rem;
  }
}