/* TYPOGRAPHY */
@import url("https://fonts.googleapis.com/css?family=Assistant:400,700|Merriweather:400,700&display=swap");
/* GENERAL */
html {
  border-top: solid 7px #D9B45F;
}

body {
  margin: 8% 25%;
  line-height: 0;
}

@media screen and (max-width: 1400px) {
  body {
    margin: 20% 15%;
  }
}
@media screen and (max-width: 992px) {
  body {
    margin: 20% 15%;
  }
}
@media screen and (max-width: 400px) {
  body {
    margin: 20% 12%;
  }
}
/* HEADER */
header img {
  display: block;
  width: 10%;
}
header img:hover {
  cursor: pointer;
}

/* FOOTER */
footer {
  margin-top: 3em;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}
footer a {
  color: rgba(0, 0, 0, 0.5);
  margin-right: 1em;
  transition: color 0.5s;
}
footer a {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  footer a {
    font-size: calc(18px + 4 * ((100vw - 320px) / 880));
  }
}
@media screen and (min-width: 1200px) {
  footer a {
    font-size: 22px;
  }
}
footer a:hover {
  color: black;
  transition: color 0.5s;
}
footer a#footer-link {
  font-family: "Merriweather", sans-serif;
  font-display: swap;
  font-weight: 700;
  line-height: 115%;
  letter-spacing: 0.03em;
  font-style: normal;
  text-decoration: none;
  border-bottom: 1px solid #E5E5E5;
  box-shadow: 0px -9px 0px #E5E5E5 inset;
  transition: all 0.5s;
}
footer a#footer-link {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  footer a#footer-link {
    font-size: calc(16px + 4 * ((100vw - 320px) / 880));
  }
}
@media screen and (min-width: 1200px) {
  footer a#footer-link {
    font-size: 20px;
  }
}
footer a#footer-link:hover {
  color: black;
  border-bottom: 1px solid #D9B45F;
  box-shadow: 0px -9px 0px #D9B45F inset;
  transition: all 0.5s;
}

/* INTRO */
h1 {
  font-family: "Assistant", sans-serif;
  font-display: swap;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding-top: 0.1em;
  line-height: 1em;
}
h1 {
  font-size: 48px;
}
@media screen and (min-width: 320px) {
  h1 {
    font-size: calc(48px + 2 * ((100vw - 320px) / 880));
  }
}
@media screen and (min-width: 1200px) {
  h1 {
    font-size: 50px;
  }
}

h2 {
  font-family: "Assistant", sans-serif;
  font-display: swap;
  font-weight: 400;
  line-height: 1em;
  letter-spacing: 0.01em;
}
h2 {
  font-size: 34px;
}
@media screen and (min-width: 320px) {
  h2 {
    font-size: calc(34px + 2 * ((100vw - 320px) / 880));
  }
}
@media screen and (min-width: 1200px) {
  h2 {
    font-size: 36px;
  }
}

p {
  font-family: "Merriweather", sans-serif;
  font-display: swap;
  font-weight: 400;
  line-height: 176%;
  letter-spacing: 0.04em;
  margin: 1.5em 0;
}
p {
  font-size: 12px;
}
@media screen and (min-width: 320px) {
  p {
    font-size: calc(12px + 4 * ((100vw - 320px) / 880));
  }
}
@media screen and (min-width: 1200px) {
  p {
    font-size: 16px;
  }
}
p span {
  text-decoration: line-through;
}
p span a {
  border-bottom: none;
  box-shadow: none;
}
p span a:hover {
  border-bottom: none;
  box-shadow: none;
}
p a {
  font-weight: 700;
  color: black;
  text-decoration: none;
  border-bottom: 1px solid #E5E5E5;
  box-shadow: 0px -9px 0px #E5E5E5 inset;
  transition: all 0.5s;
}
p a:hover {
  border-bottom: 1px solid #D9B45F;
  box-shadow: 0px -9px 0px #D9B45F inset;
  transition: all 0.5s;
}

/* CONTACT FORM */
form {
  display: flex;
  flex-direction: column;
  padding: 1em 0;
}
form input {
  font-family: "Assistant", sans-serif;
  font-display: swap;
  border: none;
  margin: 1em 0;
  padding: 0.8em 0.5em;
}
form input {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  form input {
    font-size: calc(16px + 4 * ((100vw - 320px) / 880));
  }
}
@media screen and (min-width: 1200px) {
  form input {
    font-size: 20px;
  }
}
form input:focus {
  outline: none;
  color: black;
  border-bottom: 9px solid #E5E5E5;
  transition: border-bottom 0.7s;
}
form input:valid {
  border-bottom: 9px solid #D9B45F;
  transition: border-bottom 0.7s;
}
form input:valid:not(:focus) {
  border-bottom: solid 1px #E5E5E5;
}
form textarea {
  font-family: "Assistant", sans-serif;
  font-display: swap;
  border: none;
  margin-bottom: 1em;
  padding: 0.8em 0.5em;
  height: 150px;
}
form textarea {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  form textarea {
    font-size: calc(16px + 4 * ((100vw - 320px) / 880));
  }
}
@media screen and (min-width: 1200px) {
  form textarea {
    font-size: 20px;
  }
}
form textarea:focus {
  outline: none;
  color: black;
  border-bottom: 9px solid #E5E5E5;
  transition: border-bottom 0.7s;
}
form textarea:valid {
  border: solid 1px #E5E5E5;
  transition: border 0.7s;
}
form #submit {
  font-family: "Assistant", sans-serif;
  font-display: swap;
  font-weight: 700;
  letter-spacing: 0.1em;
  border: solid 2px #000;
  width: 110px;
  border-radius: 50px;
  padding: 0.5em 1em;
  background-color: #fff;
  color: #000;
  transition: all 0.7s;
}
form #submit {
  font-size: 12px;
}
@media screen and (min-width: 320px) {
  form #submit {
    font-size: calc(12px + 4 * ((100vw - 320px) / 880));
  }
}
@media screen and (min-width: 1200px) {
  form #submit {
    font-size: 16px;
  }
}
form #submit:hover {
  cursor: pointer;
  background-color: #000;
  color: #fff;
  transition: all 0.7s;
}
form #cancel {
  font-family: "Assistant", sans-serif;
  font-display: swap;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 0.1em;
  border: none;
  width: 110px;
  border-radius: 50px;
  padding: 0.5em 1em;
  background-color: #fff;
  color: #000;
  transition: all 0.7s;
}
form #cancel {
  font-size: 12px;
}
@media screen and (min-width: 320px) {
  form #cancel {
    font-size: calc(12px + 4 * ((100vw - 320px) / 880));
  }
}
@media screen and (min-width: 1200px) {
  form #cancel {
    font-size: 16px;
  }
}
form #cancel:hover {
  cursor: pointer;
}

main h2 {
  font-family: Assistant;
  font-style: normal;
  font-weight: 700;
  line-height: 109%;
  letter-spacing: 0.01em;
  color: #000000;
}
main h2 {
  font-size: 25px;
}
@media screen and (min-width: 320px) {
  main h2 {
    font-size: calc(25px + 15 * ((100vw - 320px) / 880));
  }
}
@media screen and (min-width: 1200px) {
  main h2 {
    font-size: 40px;
  }
}
main ul {
  list-style: none;
  padding: 0;
}
main ul li time {
  font-family: Assistant;
  font-size: 30px;
  line-height: 39px;
  letter-spacing: 0.03em;
  color: rgba(0, 0, 0, 0.5);
  margin-right: 2em;
}
main ul li time {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  main ul li time {
    font-size: calc(16px + 7 * ((100vw - 320px) / 880));
  }
}
@media screen and (min-width: 1200px) {
  main ul li time {
    font-size: 23px;
  }
}
main ul li a {
  font-family: Merriweather;
  line-height: 167%;
  letter-spacing: 0.03em;
  font-weight: 700;
  color: black;
  text-decoration: none;
  border-bottom: 1px solid #E5E5E5;
  box-shadow: 0px -9px 0px #E5E5E5 inset;
  transition: all 0.5s;
}
main ul li a {
  font-size: 14px;
}
@media screen and (min-width: 320px) {
  main ul li a {
    font-size: calc(14px + 6 * ((100vw - 320px) / 880));
  }
}
@media screen and (min-width: 1200px) {
  main ul li a {
    font-size: 20px;
  }
}
main ul li a:hover {
  border-bottom: 1px solid #D9B45F;
  box-shadow: 0px -9px 0px #D9B45F inset;
  transition: all 0.5s;
}

article header {
  padding-top: 4em;
}
article header h1 {
  font-family: Assistant;
  font-style: normal;
  font-weight: 700;
  line-height: 109%;
  letter-spacing: 0.03em;
  color: #000000;
  margin-bottom: 0;
  margin-top: 1em;
}
article header h1 {
  font-size: 28px;
}
@media screen and (min-width: 320px) {
  article header h1 {
    font-size: calc(28px + 20 * ((100vw - 320px) / 880));
  }
}
@media screen and (min-width: 1200px) {
  article header h1 {
    font-size: 48px;
  }
}
article header h2 {
  font-family: Assistant;
  font-size: 36px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: rgba(0, 0, 0, 0.5);
}
article header h2 {
  font-size: 20px;
}
@media screen and (min-width: 320px) {
  article header h2 {
    font-size: calc(20px + 12 * ((100vw - 320px) / 880));
  }
}
@media screen and (min-width: 1200px) {
  article header h2 {
    font-size: 32px;
  }
}
article header h3 {
  font-family: Assistant;
  font-weight: normal;
  font-size: 30px;
  letter-spacing: 0.03em;
  color: rgba(0, 0, 0, 0.5);
  line-height: 100%;
  margin-bottom: 0;
}
article header h3 {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  article header h3 {
    font-size: calc(16px + 7 * ((100vw - 320px) / 880));
  }
}
@media screen and (min-width: 1200px) {
  article header h3 {
    font-size: 23px;
  }
}
article section.article-content {
  padding-bottom: 8em;
  border-bottom: solid 9px #E5E5E5;
}
article section.article-content img {
  width: 100%;
  padding: 2em 0;
}
article section.article-content p {
  font-family: Merriweather;
  font-style: normal;
  font-weight: normal;
  font-size: 22px;
  line-height: 185%;
  letter-spacing: 0.04em;
  color: #000000;
}
article section.article-content p {
  font-size: 14px;
}
@media screen and (min-width: 320px) {
  article section.article-content p {
    font-size: calc(14px + 8 * ((100vw - 320px) / 880));
  }
}
@media screen and (min-width: 1200px) {
  article section.article-content p {
    font-size: 22px;
  }
}