@charset "utf-8";
/* CSS Document */



@font-face {
    font-family: 'axisextra_bold';
    src: url('axis-webfont.woff2') format('woff2'),
         url('axis-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

html, 
body {
	height: 100vh;
	width: 100vw;
	margin: 0px;
	background-image: url("bg.jpg");
	background-repeat: repeat;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
}

p {
	font-family: 'axisextra_bold';
	color: white;
	font-size: 32px;
}

.content {
	display: flex;
  	align-items: center;
	margin-top: 5vh;
}

.row {
	display: block;
	text-align: center;
	}

.logo-div {
	display: inline;
	border: none;
}

.logo {
	max-width: 12.5%;
	text-align: center;
	margin: 15px;
}

.button:hover {
 	transform: scale(1.1);
	transition-duration: 0.2s;
}


@media (max-width: 768px) { 
	/* positions input field and button underneath each other with 100% width for tablet and mobile */
  
.logo {
		max-width: 30% !important;
		padding-top: 10%;
		margin: 0px 15px 15px 15px;
	}
	
.content {
	display: flex;
	align-items: center;
	}
  	
.mc-field-group { 
	display: block; 
	max-width: 100%;
	}
	
#mce-FNAME, #mce-EMAIL { 
	padding: .7em 0 .7em 1em; 
	width: 80%; 	
}
	
#mce-EMAIL { 
padding: .7em 0 .7em 1em; 
width: 80%;  
	}
	
.button { 
	width: 80%; 
	padding: .7em 0 .7em 1em; 
	}
	
.clear { 
	display: block; 
	width: 100% 
	}
	

  
}