@import url("heading.css");
@import url("animations.css");
@import url("menu.css");
@import url("copyright.css");

/* General stuff */
body {
  background-color: white;
  text-align: center;
  font-family: 'Assistant', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: black;
  margin: 0;
  padding: 0;
}

/* The blurb at the top */
p {
  width: 650px;
  max-width: 95%;
  margin: 20px auto;
  animation-name: fade-in;
  animation-duration: 1s;
}

/* the bullets separating the blurb and the form below */
h4 {
  font-size: 22px;
  font-weight: 600;
  margin: 20px auto;
  animation-name: fade-in;
  animation-duration: 2s;
}

/* The contact form */
form {
  width: 650px;
  max-width: 95%;
  margin: 0 auto 40px;
  text-align: left;
  animation-name: fade-in;
  animation-duration: 3s;
}

/* All the text input fields */
input[type=text], textarea {
  font-family: 'Assistant', sans-serif;
  font-size: 14px;
  width: 100%;
  padding: 12px;
  border: 1px solid black;
  border-radius: 5px;
  box-sizing: border-box; /* make sure that padding and width stays in place */
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical /* allow the user to vertically resize the textarea (not horizontally) */
}

/* This is there to trap bots, which try to fill in all the fields */
input#confirm-email {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
}

/* The submit button */
input[type=submit] {
  font-family: 'Assistant', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.6);
  text-decoration: none;
  background-color: white;
  border: 2px solid rgba(0, 0, 0, 0.4);
  border-radius: 2px;
  padding: 5px 15px;
  letter-spacing: 6px;
  white-space: nowrap;
  transition: all 0.6s;
}
input[type=submit]:hover {
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  border-color: rgb(200, 200, 200);
  border-radius: 10px;
}

/* The 'thanks' page, when a message is sent */
body.thanks {
  margin-top: 100px;
}
body.thanks h1 {
  font-family: Montserrat, sans-serif;
  font-weight: 900;
  font-size: 32px;
}
/* Links in the blurb (used also in submit page) */
body.thanks a:link, body.thanks a:visited, body.thanks a:active {
  color: black;
  text-decoration: none;
  font-weight: 600;
}
body.thanks a:hover {
  text-decoration: underline;
}
