div.contact {
  height: 70vh;
  width: 100%;

  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;

  background-color: #242424;
  display: grid;
  grid-template-columns: 3fr 4fr;
  justify-items: start;
  align-items: start;

  padding-left: 80px;
  padding-top: 80px;
  transform: translateY(70vh);
}

div.contact button.close {
  position: fixed;
  top: 10px;
  right: 20px;
  font-size: 16px;

  font-family: "Atacama";
  font-variation-settings: "wght" 200, "wdth" 130, "CNTR" 80;
  border: solid 1px #f1f0eb;
  width: 80px;
  height: 40px;
  border-radius: 20px;
  margin-top: 20px;
  transition-duration: 0.25s;
  background-color: transparent;
  color: #f1f0eb;

  opacity: 0;
}

div.contact span.contact-hello {
  font-family: "Atacama";
  font-size: 84px;
  font-variation-settings: "wght" 200, "wdth" 130, "CNTR" 80;
  margin-top: -200px;
  color: #f1f0eb;
  line-height: 1.2;
}

div.success {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90vw;
  height: "300px";
}

div.success span.thank-you {
  font-family: "Atacama";
  font-size: 54px;
  font-variation-settings: "wght" 200, "wdth" 130, "CNTR" 80;
  color: #f1f0eb;
}
div.success span.message {
  font-family: "Atacama";
  font-size: 34px;
  font-variation-settings: "wght" 200, "wdth" 130, "CNTR" 80;
  color: #f1f0eb;
}

div.contact form {
  font-family: "Atacama";
  font-size: 28px;
  font-variation-settings: "wght" 200, "wdth" 130, "CNTR" 80;
  color: #f1f0eb;
}

div.contact form input,
textarea {
  font-family: "Atacama";
  font-size: 18px;
  font-variation-settings: "wght" 200, "wdth" 130, "CNTR" 80;
  border: none;
  border-bottom: solid 1px #f1f0eb;
  min-width: 500px;
  background-color: transparent;
  transition-duration: 0.25s;
  margin-bottom: 35px;
  padding-bottom: 5px;
  color: #f1f0eb;
}

div.contact form textarea {
  height: 100px;
}

div.contact form input:focus,
textarea:focus {
  outline: none;
  background-color: #38383890;
}

div.contact button.send {
  font-family: "Atacama";
  font-variation-settings: "wght" 200, "wdth" 130, "CNTR" 80;
  font-size: 16px;
  border: solid 1px #f1f0eb;
  width: 100px;
  height: 40px;
  border-radius: 20px;
  margin-top: 20px;
  transition-duration: 0.25s;
  color: #f1f0eb;
  background-color: transparent;
}
div.contact button:hover {
  cursor: pointer;
  background-color: rgba(183, 183, 183, 0.423);
}

@media (max-width: 1000px) {
  div.contact {
    height: 70vh;
    width: 100%;

    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;

    background-color: #242424;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    padding-left: 20px;
    transform: translateY(70vh);
    padding-top: 0px;
  }

  div.contact span.contact-hello {
    font-size: 30px;
    line-height: 2.5;
  }

  div.contact form {
    font-size: 16px;
  }

  div.contact form input,
  textarea {
    font-size: 12px;
    min-width: 300px;
    margin-bottom: 15px;
    padding-bottom: 5px;
  }

  div.contact button.close {
    position: fixed;
    top: -30px;
    right: 5px;
    font-size: 16px;

    font-family: "Atacama";
    font-variation-settings: "wght" 200, "wdth" 130, "CNTR" 80;
    font-size: 14px;
    border: none;
    background-color: #242424;
    width: 60px;
    height: 40px;
    border-radius: 20px;
    margin-top: 10px;
  }

  div.contact button.send {
    font-family: "Atacama";
    font-variation-settings: "wght" 200, "wdth" 130, "CNTR" 80;
    font-size: 14px;
    border: solid 1px #f1f0eb;
    width: 80px;
    height: 40px;
    border-radius: 20px;
    transition-duration: 0.25s;
    color: #f1f0eb;
    background-color: transparent;
    margin-top: 0px;
  }

  div.success span.thank-you {
    font-family: "Atacama";
    font-size: 44px;
    font-variation-settings: "wght" 200, "wdth" 130, "CNTR" 80;
    color: #f1f0eb;
  }

  div.success span.message {
    font-family: "Atacama";
    font-size: 26px;
    font-variation-settings: "wght" 200, "wdth" 130, "CNTR" 80;
    color: #f1f0eb;
  }
}
