body {
  text-align: center;
  font-family: "Montserrat","Muli","Open Sans",sans-serif;
  background: white;
  color: #556;
  margin: 0;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
}

a {
  color: #d09ee6;
}

.contactsplash {
  position: absolute;
  top: 10px;
  right: 20px;
  padding: 20px;
  font-size: 20px;
  font-weight: 400;
  text-shadow: 0 0 4px black;
  transition: color 0.6s;
  cursor: pointer;
}

.contactsplash:hover {
  color: #ccd;
  transition: color 0.2s;
}

.contactsplash:active {
  color: #aab;
  transition: color 0.05s;
}

header {
  grid-area: page;
  background-color: hsl(225,8%,20%);
  background: url("art.jpg"), radial-gradient(circle, #9f9f9f 15%, #06157c 60%, #000421);
  width: 100%;
  min-height: 100vh;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  display: flex;
  color: white;
}

#logo {
  width: 950px;
  max-width: 100%;
  margin: 30px 0 30px 10px;
}

@media screen and (min-width: 800px) {
  #logo {
    margin: 30px 0;
  }
}

.splash {
  margin: auto;
  padding: 0 30px 30px;
  font-size: 26px;
  font-weight: 300;
}

.statusmessage {
  font-family: "Montserrat","Muli","Open Sans",sans-serif;
  padding-top: 15vh;
  font-size: 20px;
  font-weight: 200;
  font-style: italic;
}

.scrollmessage {
  position: absolute;
  width: 100%;
  bottom: 0;
  padding-bottom: 15px;
  font-size: 14px;
  font-weight: 200;
  opacity: 0.9;
}

.scrollmessage img {
  height: 8px;
  display: inline;
  padding: 1px 8px;
  transform: rotate(180deg);
  animation: bob 1s cubic-bezier(.2,.3,.8,.7) infinite;
}

@keyframes bob {
  0%, 100% {
    transform: rotate(180deg) translateY(-3px);
  }
  50% {
    transform: rotate(180deg) translateY(3px);
  }
}

article {
  padding-top: 40px;
}

h1 {
  font-family: "Oleo Script","Montserrat","Brush Script MT",cursive;
  font-size: 48px;
  font-weight: normal;
  margin: 30px 30px;
}

p {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  font-size: 22px;
  font-weight: 400;
  padding-bottom: 70px;
  color: #667;
  line-height: 32px;
}

.revenueblock {
  width: 600px;
  display: grid;
  margin: 0 auto;
  grid-template-columns: ifr 600px ifr;
  grid-template-rows: auto auto 50px;
  grid-template-areas:
    ". revimg ."
    ". revtext ."
    ". . .";
}

@media screen and (min-width: 1140px) {
  .revenueblock {
    width: 1140px;
    display: grid;
    margin: 0 auto;
    grid-template-columns: 600px 500px;
    grid-template-rows: auto 10px;
    grid-template-areas:
      "revimg revtext"
      ". .";
  }
}

.revenueblock img {
  width: 600px;
  grid-area: revimg;
  margin: auto 0;
}

.revenuetext {
  grid-area: revtext;
  font-size: 18px;
  margin: auto;
  max-width: 500px;
}

.revenuetext ul {
  text-align: left;
  margin: 0;
  line-height: 24px;
  padding: 0 10px 0 30px;
  color: #667;
}

.revenuetext li {
  margin-bottom: 6px;
}

h2, h3 {
  font-family: "Oleo Script","Montserrat","Brush Script MT",cursive;
  font-size: 36px;
  font-weight: normal;
  margin: 10px 0
}

.featureblock {
  display: grid;
  margin: 0 auto;
  width: 540px;
  padding: 40px 30px;
  grid-row-gap: 30px;
  grid-template-columns: 540px;
  grid-template-rows: auto;
  grid-template-areas:
    "featurehead"
    "featureimg"
    "featuretext";
}

@media screen and (min-width: 1220px) {
  .featureblock {
    grid-column-gap: 40px;
    grid-row-gap: 0;
    width: 1140px;
    padding: 40px;
  }

  .featureright {
    grid-template-columns: 600px 500px;
    grid-template-areas:
      "featurehead featureimg"
      "featuretext featureimg";
  }

  .featureleft {
    grid-template-columns: 500px 600px;
    grid-template-areas:
      "featureimg featurehead"
      "featureimg featuretext";
  }
}

.featureblock img {
  width: 100%;
  grid-area: featureimg;
}

.featureblock h3 {
  grid-area: featurehead;
  margin-top: auto;
}

.featureblock p {
  grid-area: featuretext;
  padding-bottom: 0;
}

#contactdimmer {
  position: fixed;
  z-index: 3;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: hsla(225,8%,10%,0);
  display: flex;
  visibility: hidden;
  transition: background 0.5s, visibility 0.5s, -webkit-backdrop-filter 0.5s, backdrop-filter 0.5s;
}

#contactdimmer.contactopen {
  background: hsla(225,8%,10%,0.8);
  visibility: visible;
  transition: background 1s, visibility 0s, -webkit-backdrop-filter 1s, backdrop-filter 1s;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

#contact {
  width: 550px;
  margin: auto;
  background: hsla(225,8%,20%,0.9);
  overflow: auto;
  max-height: 100%;
  box-shadow: 0 0 15px hsl(225,8%,5%);
  transform: translateY(100vh);
  transition: transform 0.5s;
  text-align: left;
  color: white;
}

#contact.contactopen {
  transform: translateY(0);
  transition: transform 1s;
}

#contactheader {
  padding: 20px 20px 0;
  font-size: 16px;
  font-weight: 300;
  height: 50px;
  line-height: 50px;
}

#contactheader strong {
  font-size: 26px;
  font-weight: 600;
}

#contactclose {
  float: right;
  width: 30px;
  padding: 10px;
  margin: 20px;
  background: hsla(225,8%,15%,0.8);
  box-shadow: 0 0 5px hsl(225,8%,5%) inset;
  cursor: pointer;
  transition: background 0.6s;
}

#contactclose:hover {
  transition: background 0.2s;
  background: hsla(225,8%,25%,0.9);
}

#contactclose:active {
  transition: background 0.05s;
  background: hsla(225,8%,30%,0.95);
}

#contactform {
  margin: 0;
  padding: 20px;
  font-weight: 400;
}

#contactform input, #contactform textarea {
  font-family: "Montserrat",sans-serif;
  font-size: 16px;
  color: white;
  background: hsla(225,8%,15%,0.8);
  border: 0;
  width: 100%;
  padding: 10px;
  transition: background 0.6s;
  border-radius: 0;
  outline: none;
  margin: 0;
  line-height: 20px;
  font-weight: 300;
  box-shadow: 0 0 5px hsl(225,8%,5%) inset;
  box-sizing: border-box;
}

#contactform input:not(output):-moz-ui-invalid, #contactform textarea:not(output):-moz-ui-invalid {
  box-shadow: 0 0 10px red inset;
}

#contactform input:focus, #contactform textarea:focus {
  transition: background 0.05s;
  background: hsla(225,8%,25%,0.8);
}

#contactform textarea {
  resize: none;
  height: calc(90vh - 565px);
  min-height: 90px;
  max-height: 230px
}

.contacttext {
  padding: 0 0 10px 0;
}

.contactlabel {
  padding: 0 0 5px 5px;
}

.g-recaptcha {
  padding: 5px 0 15px 0;
  margin: auto;
  width: 304px;
  height: 76px;
}

.contactbutton {
  padding: 15px;
  font-size: 22px;
  font-weight: 400;
  border: 1px solid #dde;
  cursor: pointer;
  width: 130px;
  margin: -30px auto 20px;
  background: #eef;
  transition: background 0.6s, border 0.6s;
}

#disqus_thread {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.contactbutton:hover {
  background: #dde;
  border: 1px solid #ccd;
  transition: background 0.2s, border 0.2s;
}

.contactbutton:active {
  background: #ccd;
  border: 1px solid #bbc;
  transition: background 0.05s, border 0.05s;
}

#contactsubmit input {
  cursor: pointer;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  transition: background 0.6s, font-size 0.6s;
}

#contactsubmit input:hover {
  transition: background 0.2s, font-size 0.2s;
  background: hsla(225,8%,25%,0.9);
}

#contactsubmit input:focus {
  transition: background 0.05s, font-size 0.05s;
  background: hsla(225,8%,30%,0.95);
  font-size: 16px;
}