/* general styles */
html, body, h1, h2, h3, p, form, ul, ol{
  margin: 0px;
  padding: 0px;
}
html, body{
  width: 100%;
  height: 100%;
}
body{
  background-color: #FFF;
  font-family: 'Barlow', sans-serif;
  color: #000;
  -color: rgba(186,158,185,1);
  font-size: 17px;
  line-height: 1.5em;
  font-weight: 400;
}
header{
  height: 190px;
  width: 100%;
  left: 0px;
  top: 0px;
  z-index: 10;
  position: fixed;
  background: white;
  
}
header img{
  width: 500px;
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-22%,0);
  top: 30px;
  z-index: 10;
}
article{
  width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 200px;
  padding-bottom: 200px;
  position: relative;

  background: rgb(69,69,69);
  background: linear-gradient(110.5deg, rgba(69,69,69,1) 50%, rgba(186,158,185,1) 50%);

  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  color: transparent;

  background-attachment: fixed;
}

h1{
  font-weight: 400;
  font-size: 1.4em;
  line-height: 1.2em;
  margin-bottom: 25px;
}
h1 span,
h2{
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 200;
  color: rgba(186,158,185,1);
  
}
h1 span, h2{
  text-transform: uppercase;
}


a{
  color: inherit;
  text-decoration: none;
}
a:hover{
  text-decoration: underline;
}

div.footerOverlay{
  border: solid 1px rgb(186,158,185);
  background: white;
  width: 500px;
  height: 500px;
  position: fixed;
  bottom: -200px;
  right: -200px;
  transform: rotate(22deg);
  z-index: 11;
}
div.contact{
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 11;
  color: #444;
  text-align: right;
}
div.contact h2{
  font-size: 1.2em;
  margin: 0px;
  color: rgba(186,158,185,1);
}