@import url('https://fonts.googleapis.com/css?family=Playfair+Display|Raleway');

html, body {
  margin: 0;
  padding: 0;
  background: #101010;
  -webkit-font-smoothing: antialiased;
  background: #f0f0f0;
}

main {
  width: 900px;
  margin: 0 auto;
  padding: 20px 50px;
  background: #fff;
}

header {
  height: 100vh;
  position: relative;
  background: linear-gradient(270deg, rgba(0,0,0,.1), rgba(0,0,0,.7)), url("img/bg1UNEDIT.jpg");
  background-size: 300% 100%;
  -webkit-animation: headerbackground 100s infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation: headerbackground 100s infinite;
  -moz-animation-timing-function: linear;
  animation: headerbackground 100s infinite;
  animation-timing-function: linear;
  animation-play-state: paused;
}

header:hover {
  animation-play-state: running;
}

@-webkit-keyframes headerbackground {
   0% {background-position: 0% 50%}
   50% {background-position: 100% 50%}
   100% {background-position: 0% 50%}
}
@-moz-keyframes headerbackground {
   0% {background-position: 0% 50%}
   50% {background-position: 100% 50%}
   100% {background-position :0% 50%}
}
@keyframes headerbackground {
   0% {background-position: 0% 50%}
   50% {background-position: 100% 50%}
   100% {background-position: 0% 50%}
}

.header-parent {
  width: 300px;
  height: 300px;
  margin: 0 auto;
  background: rgba(0,0,0,0.5);
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.header-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

h1 {
  text-align: center;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 2px;
  text-transform: capitalize;
}

h2 {
  text-align: center;
  font-weight: 400;
  color: #fff;
  font-family: 'Raleway', sans-serif;
}

.arrows {
	width: 72px;
	height: 72px;
	position: absolute;
	left: 50%;
	margin-left: -30px;
  bottom: 50px;

}

.arrows path {
	stroke: #fff;
	fill: transparent;
	stroke-width: 1px;
	animation: arrow 2s infinite;
	-webkit-animation: arrow 2s infinite;
}

@keyframes arrow {
  0% {opacity: 0}
  40% {opacity: 1}
  80% {opacity: 0}
  100% {opacity: 0}
}

/*Safari and Chrome*/
@-webkit-keyframes arrow {
  0% {opacity: 0}
  40% {opacity: 1}
  80% {opacity: 0}
  100% {opacity: 0}
}

.arrows path.arrow1 {
	animation-delay: -1s;
	-webkit-animation-delay: -1s;
}

.arrows path.arrow2 {
	animation-delay:-0.5s;
	-webkit-animation-delay:-0.5s;
}

.arrows path.arrow3 {
	animation-delay:0s;
	-webkit-animation-delay:0s;
}

h3 {
  margin: 0;
  padding: 60px 30px 40px 30px;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 32pt;
  font-style: italic;
}

h4 {
  margin: 0;
  padding: 0 40px 20px 40px;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 20pt;
}

.group-text {
  display: inline-block;
  margin-left: 50px;
  margin-bottom: 20px;
  border-left: 3px #ccc solid;
}

p {
  margin: 10px auto;
  padding: 0 30px;
  font-family: 'Raleway', serif;
  line-height: 1.5;
  font-size: 13pt;
}

ul {
  list-style: square;
}

li {
  font-style: italic;
}


footer {
  height: 300px;
  background: #202020;
}

.mailing-list {
  height: 100%;
  margin: 0 auto;
  text-align: center;
}

.mailing-text {
  padding: 80px 0 0 0;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 24pt;
  font-weight: 800;
  letter-spacing: 2px;
}

input {
  margin: 0;
  padding: 0;
}

.email-input {
  width: 420px;
  height: 40px;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  color: #999;
  padding: 0 10px;
  margin-top: 20px;
}

.email-submit {
  height: 44px;
  display: inline-block;
  padding: 0 10px;
  margin-left: -4px;
  font-family: 'Raleway', sans-serif;
  font-weight: bold;
  color: #fff;
  background: #27ae60;
  border: none;
  transition: 0.2s;
  letter-spacing: 2px;
}

.email-submit:hover {
  color: #f0f0f0;
  background: #2ecc71;
  transition: 0.2s;
  cursor: pointer;
}

/*background: linear-gradient(270deg, #0caecf, #0bd4b8, #1acd54, #75ef38);
background-size: 800% 800%;

-webkit-animation: headerbackground 30s ease infinite;
-moz-animation: headerbackground 30s ease infinite;
animation: headerbackground 30s ease infinite;
@-webkit-keyframes headerbackground {
   0%{background-position:0% 50%}
   50%{background-position:100% 50%}
   100%{background-position:0% 50%}
}
@-moz-keyframes headerbackground {
   0%{background-position:0% 50%}
   50%{background-position:100% 50%}
   100%{background-position:0% 50%}
}
@keyframes headerbackground {
   0%{background-position:0% 50%}
   50%{background-position:100% 50%}
   100%{background-position:0% 50%}
}*/
