@charset "UTF-8";
/* CSS Document */

* {
	margin: 0px;
	padding: 0px;
}

header {
	height: 100vh;
	background-image: url(images/ReactionBG.jpg);
	background-size: cover;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.logoContainer {
	
}

.logo {
	background: url("images/Reaction_Logo-01.svg") no-repeat top;
	background-size: contain;
    width: 450px;
	height: 450px;
}

.contactContainer {
	box-sizing: border-box;
	color: #225279;
	background: #fff;
	padding: 10px 10px 0px 10px;
	border: 2px  #6ac5d4 solid;
	width: 300px;
	margin: 0px auto;
	font-family: 'Roboto Slab', serif;
}

.contact {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
}

h1 {
	display: inline-block;
	/* border-bottom: 2px #6ac5d4 dotted; */
	font-weight: 700;
	text-transform: uppercase;
	font-size: 45px;
	line-height: 45px;
	/* padding-bottom: 5px; */
}

h2 {
	display:inline-flex;
	border-bottom: 2px #6ac5d4 solid;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 25px;
	line-height: 25px;
	padding-bottom: 10px;
	font-style: oblique;
}


.subhead {
	margin-top: 10px;
	margin-bottom: 10px;
	padding-top: 10px;
	padding-bottom: 10px;
    border-bottom: 3px #6ac5d4 dotted;
	border-top: 3px #6ac5d4 dotted;
	font-size: 20px;

}

.phone {
	font-size: 23px;
	font-weight: 400;
}

.phone a {
	text-decoration: none;
	color: inherit;
}

.phone a:hover {
	padding: 2px 5px;
	background: #6ac5d4;
	color: #fff;
}

.email {
	background: url(images/email-icon-01.svg) no-repeat;
	background-size: contain;
	height: 30px;
	width: 48px;
	margin: 10px 0px;
	
}


@media (max-width:425px){


.logo {
	width: 300px;
	height: 240px;
	margin-bottom: 40px;
}

.contactContainer {
	width: 240px;
	margin: 0px auto;
}
	
h1 {
	font-size: 33px;
	line-height: 33px;
}
	
h2 {
	font-size: 23px;
	line-height: 23px;
}



}


