#contactMe {
  width: 100%;
  min-height: 100vh;
  background-color: #2c2c2c;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  position: relative;
}

#contactMe .container {
  text-align: center;
  padding: 70px 0;
}

#contactMe #contactForm .contactFormFields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  grid-template-areas: ". ." "subject subject" "message message";
  grid-gap: 5px;
  padding-bottom: 10px;
}

#contactMe #contactForm .button {
  color: #08fdd8;
  font-size: 11px;
  letter-spacing: 3px;
  font-family: "Open Sans", sans-serif;
  text-decoration: none;
  padding: 8px 10px;
  border: 1px solid #08fdd8;
  border-radius: 4px;
  background: 0 0;
  text-transform: uppercase;
  float: right;
  text-align: center;
  margin-right: 10px;
}

#contactMe #contactForm .name,
#contactMe #contactForm .email,
#contactMe #contactForm .subject {
  width: 100%;
  border: 0;
  background: #37393b;
  height: 50px;
  font-size: 16px;
  color: #8d8d8d;
  padding: 0 20px;
  /* box-sizing: border-box; */
}

#contactMe #contactForm .message {
  grid-area: message;
  width: 100%;
  border: 0;
  background: #37393b;
  height: 50px;
  font-size: 16px;
  color: #8d8d8d;
  padding: 20px;
  /* box-sizing: border-box; */
  min-height: 150px;
}

#contactMe #contactForm .subject {
  grid-area: subject;
}

#contactMe #contactForm .error {
  animation-name: glowingError;
  animation-duration: 2s;
}

@keyframes glowingError {
  0% {
    box-shadow: initial;
    border: initial;
  }
  25% {
    box-shadow: 0 0 10px red;
    border: 1.2px solid red;
  }
  50% {
    box-shadow: initial;
  }
  75% {
    box-shadow: 0 0 10px red;
  }
  100% {
    box-shadow: initial;
  }
}

/* SVG */
#contactMe svg.svgcolor-light {
  position: absolute;
  top: 0;
  left: 0;
  background-color: white;
}

#contactMe svg.svgcolor-light path {
  fill: #2c2c2c;
}

@media (max-width: 660px) {
  #contactMe svg.svgcolor-light {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
  }
}

/*This is a button! */
#contactMe .handNote {
  float: right;
  padding-top: 8px;
  font-family: "Shadows Into Light", cursive;
  transform: rotate(-7deg);
}

#contactMe .handNote img {
  height: 30px;
  padding-right: 10px;
  transform: rotate(-7deg);
}

/* social list */
#contactMe ul.socialList {
  list-style-type: none;
  padding: 0;
  margin: 0;
  padding-left: 35px;
}

#contactMe ul.socialList li {
  text-align: left;
  padding-bottom: 20px;
}

#contactMe ul.socialList li a {
  color: inherit;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
}
#contactMe ul.socialList li a:hover {
  text-decoration: underline;
}

#contactMe ul.socialList li a i {
  font-size: 40px;
  padding-right: 20px;
}

/* SVG */
.editorial {
  display: block;
  width: 100%;
  height: 60px;
  max-height: 60px;
  margin: 0;
  z-index: 4;
  bottom: 0;
  position: absolute;
  left: 0px;
  float: left;
}

.parallax1 > use {
  animation: move-forever1 10s linear infinite;
}
.parallax2 > use {
  animation: move-forever2 8s linear infinite;
}
.parallax3 > use {
  animation: move-forever3 6s linear infinite;
}
.parallax4 > use {
  animation: move-forever4 4s linear infinite;
}
@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}
@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
@keyframes move-forever3 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}
@keyframes move-forever4 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
