html {
  background: url('../images/background.jpg') no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: white;
}

h1  {
  font-size: 45px;
  font-weight: 800;
}

span {
  color: red;
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5); /* Black background with opacity */
  z-index: 1;
}

.socialBar {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  margin: 2em 0;
}

.fa-facebook-f, .fa-twitter, .fa-instagram {
  color: black;
}

.fa-facebook-f:hover {
  color: #4468B0;
  background-color: white;
  border-radius: 50%;
}

.fa-twitter:hover {
  color: #2AA3EF;
  background-color: white;
  border-radius: 50%;
}

.fa-instagram:hover {
  background: radial-gradient(circle at 33% 100%, #FED373 4%, #F15245 30%, #D92E7F 62%, #9B36B7 85%, #515ECF);
  border-radius: 50%;
}

.heading {
  position: relative;
  z-index: 2;
  max-width: 500px;
  text-align: center;
  margin: 0 auto;
  padding: 0 .7em 1em .7em;
}

.main {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 725px;
  margin: 0 auto;
  padding: 0 .7em;
}

form {
  position: relative;
  z-index: 2;
}

#feedback-page{
	text-align:center;
}

#form-main{
	width:100%;
	float:left;
	padding-top:0px;
}

#form-div {
	padding-left:35px;
	padding-right:35px;
	padding-bottom:40px;
	width: 450px;
	float: left;
	left: 50%;
	position: relative;
	margin-left: -260px;
  -moz-border-radius: 7px;
  -webkit-border-radius: 7px;
}

.feedback-input {
	color:#3c3c3c;
  font-weight:400;
	font-size: 18px;
	border-radius: 0;
	line-height: 22px;
	background-color: #fbfbfb;
	padding: 10px 10px 10px 54px;
	width:100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
  border: 3px solid rgba(0,0,0,0);
}

.feedback-input:focus{
	background: #fff;
	box-shadow: 0;
	border: 3px solid #3498db;
	color: #3498db;
	outline: none;
}

.focused{
	color:#30aed6;
	border:#30aed6 solid 3px;
}

/* Icons ---------------------------------- */
#name{
	background-image: url('../icons/user-alt.svg');
	background-size: 25px 25px;
	background-position: 11px 8px;
	background-repeat: no-repeat;
	display: block;
}

#email{
	background-image: url('../icons/envelope.svg');
	background-size: 25px 25px;
	background-position: 11px 8px;
	background-repeat: no-repeat;
}

#comment{
	background-image: url('../icons/pencil.svg');
	background-size: 25px 25px;
	background-position: 11px 8px;
	background-repeat: no-repeat;
}

textarea {
    width: 100%;
    height: 140px;
    resize:vertical;
}

input:hover, textarea:hover,
input:focus, textarea:focus {
	background-color:white;
}

#button-blue{
	float:left;
	width: 100%;
	border: #fbfbfb solid 4px;
	cursor:pointer;
	background-color: red;
	color:white;
	font-size:24px;
	padding-top:22px;
	padding-bottom:22px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
  margin-top:-4px;
  font-weight:600;
}

#button-blue:hover{
	background-color: rgba(0,0,0,0);
	color: red;
}

.submit:hover {
	color: #3498db;
}

.ease {
	width: 0px;
	height: 74px;
	background-color: #fbfbfb;
	-webkit-transition: .3s ease;
	-moz-transition: .3s ease;
	-o-transition: .3s ease;
	-ms-transition: .3s ease;
	transition: .3s ease;
}

.submit:hover .ease{
  width:100%;
  background-color:white;
}

footer {
  z-index: 2;
  position:relative;
  display: inline-block;
  bottom:0;
  width:100%;
  height: 40px;
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  margin-top: 30px;
}

@media only screen and (max-width: 580px) {
	#form-div{
		left: 3%;
		margin-right: 3%;
		width: 88%;
		margin-left: 0;
		padding-left: 3%;
		padding-right: 3%;
	}
}

@media only screen and (max-width: 480px) {
  h1 {
    font-size: 35px;
  }

  .main {
    font-size: 16px;
  }

  footer {
    font-size: 14px;
  }
}

@media only screen and (max-width: 340px) {
  h1 {
    font-size: 28px;
  }

  .main {
    font-size: 14px;
  }

  footer {
    font-size: 12px;
  }
}
