body, html{
	height: 100%;
	margin: 0;
	font-size: 16px;
	font-family: "arial", sans-serif;
	font-weight: 400;
	line-height: 3.5em;
	overflow: hidden;
}

.header{
    background-color: rgb(255, 255, 255);
    background-image: url("prayheader.png");
    background-repeat: no-repeat;
    background-size: 60vw;
    background-position: center;
    height: 10%;
    width: 100vw;
}

.header h1{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 750;
    font-size: 40px;
    margin: auto;
    text-align: center;
    color: #173f73;
    padding-top: 20px;
    padding-bottom: 20px;
}

.image{
    background-color: cornflowerblue;
    width: 100vw;
    height: 100vh;
    background-image: url("pray.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.image h2{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 300;
    font-size: 70px;
    margin: auto;
    text-align: center;
    color: #fff;
    padding-top: 150px;
    padding-bottom: 20px;
}

hr.line {
    border: 2px solid rgb(255, 255, 255);
    width: 250px;
}

.image p{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 100;
    font-size: 25px;
    margin: auto;
    text-align: center;
    color: #fff;
    padding-top: 10px;
    padding-bottom: 20px;
}

.image a img{
    width: 40px;
}

.image a img {
  border-radius: 50%;
  -webkit-transition: -webkit-transform .8s ease-in-out;
          transition:         transform .8s ease-in-out;
}
.image a img:hover {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.button {
  display: inline-block;
  border-radius: 4px;
  background-color: #000131b9;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 16px;
  padding: 20px;
  width: 180px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}

.form{
	margin: 0;
	padding: 0;
	text-align: center;
	background-color: transparent;
	background-size: cover;
	background-position: center;
	font-family: sans-serif;
	width: 100%;
	overflow-x: hidden;
}

.contact-title{
	margin-top: 5%;
	color: rgb(255, 255, 255;
}

.contact-title h1{
	font-size: 5vh;
	line-height: 6vh;
	text-align: center;
}

form{
	display: inline-block;
    margin-left: auto;
	margin-right: auto;
	margin-bottom: 5%;
	overflow-x: hidden;
}

.form-control{
	background: transparent;
	font-size: 18px;
	margin-bottom: 16px;
	text-align: center;
}

input{
	height: 50px;
	border-bottom: 1.5px solid rgb(0, 15, 80);
	outline-color: transparent;
	border-top: transparent;
	border-left: transparent;
	border-right: transparent;
	color: rgb(255,255,255);
	width: 100%;
    overflow-x: hidden;
    background-color: transparent;
}

@media screen and (max-width: 479px) {
	/* start of phone styles */
	input{
		width: 60%;
	}
	input[type=submit]{
		width: 200px;
	}
	.form{
		margin-left: 15%;
		text-align: left;
	}
	contact-title{
		margin-left: 11%;
	}
	input[type=submit]{
		margin-left: 10%;
	}
}

textarea{
	height: 6vh;
	border-bottom: 1.5px solid rgb(0, 15, 80);
	outline-color: transparent;
	border-top: transparent;
	border-left: transparent;
	border-right: transparent;
    width: 100%;
    background-color: transparent;
}


input[type=submit]{
	background-color: rgb(0, 15, 80);
	color: white;
	width: 200px;
  	text-decoration: none;
	cursor: pointer;
	margin-top: 6%;
	text-align: center;
}

textarea{
	height: 100px;
}

::-webkit-input-placeholder { /* Edge */
  color: rgb(0, 15, 80);
}

:-ms-input-placeholder { /* Internet Explorer */
  color: rgb(0, 15, 80);
}

::placeholder {
  color: rgb(0, 15, 80);
}