:root {
  --font-family: fakt, sans-serif;
  --font-size: 1.05vw;
}
@media (max-width: 1140px) {
  :root {
    --font-size: 1.65vw;
  }
}
@media (max-width: 720px) {
  :root {
    --font-size: 4vw;
  }
}

* {
  position: relative;
  box-sizing: border-box;
  text-underline-offset: 0.125em;
  text-decoration-thickness: 0.06em;
}
@media (max-width: 720px) {
  * {
    text-decoration-thickness: 0.05em;
  }
}

body {
  margin: 0;
}

figure {
  margin: 0;
}

img,
video,
svg {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
}

img,
svg {
  pointer-events: none;
}

button,
input {
  all: unset;
  box-sizing: border-box;
  position: relative;
  font-family: var(--font-family);
}
button::-moz-placeholder, input::-moz-placeholder {
  line-height: inherit;
  color: inherit;
}
button::placeholder,
input::placeholder {
  line-height: inherit;
  color: inherit;
}

button {
  cursor: pointer;
}

label {
  display: none;
}

p, h1, h2, h3, h4, h5, h6 {
  font-size: unset;
  font-weight: unset;
}
p:first-child, h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  margin-top: 0;
}
p:last-child, h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child {
  margin-bottom: 0;
}

@font-face {
  font-family: "graphik";
  font-weight: normal;
  font-style: normal;
  src: url("./fonts/Graphik-Regular-Web.woff2") format("woff2");
}
#wip {
  position: fixed;
  font-size: 16px;
  top: 0;
  left: 0;
  background-color: white;
  z-index: 1000;
  width: 100vw;
  height: 100vh;
  padding: 5vw;
  font-family: "graphik", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 1800px) {
  #wip.large {
    display: block;
  }
}
@media (min-width: 1800px) {
  #wip.large {
    display: none;
  }
}
@media (max-width: 1140px) {
  #wip.medium {
    display: block;
  }
}
@media (min-width: 1140px) {
  #wip.medium {
    display: none;
  }
}
@media (max-width: 720px) {
  #wip.small {
    display: block;
  }
}
@media (min-width: 720px) {
  #wip.small {
    display: none;
  }
}
#wip .inner-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  max-width: 20em;
  margin-left: auto;
  margin-right: auto;
}
#wip p {
  max-width: 100%;
  line-height: 140%;
  font-size: 0.8em;
  letter-spacing: 0.015em;
  color: #999999;
  margin: 0;
}
#wip a {
  text-underline-offset: 0.15em;
  white-space: nowrap;
  text-decoration: underline;
  color: inherit;
}
#wip a:hover {
  color: red;
}
#wip main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  max-width: 100%;
}
#wip main p {
  margin-bottom: 2em;
}
#wip main input {
  background-color: white;
  padding: 1.25em;
  font: inherit;
  box-shadow: 0 0.5em 2em 0 rgba(0, 0, 0, 0.025);
  border: 1px solid black;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  font-size: 0.8em;
}
#wip main input::-moz-placeholder {
  color: #999;
}
#wip main input::placeholder {
  color: #999;
}
#wip main button {
  padding: 1.25em 0;
  text-transform: uppercase;
  text-underline-offset: 0.1em;
  color: red;
  letter-spacing: 0.015em;
  font-size: 0.8em;
}
#wip main button:hover {
  text-decoration: underline;
}
#wip .error {
  color: red;
  font-size: 0.8em;
  letter-spacing: 0.015em;
  margin: 1em 0;
}
#wip form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  width: 20em;
  max-width: 100%;
}
#wip form p {
  margin-bottom: 2em;
}
#wip form input {
  background-color: white;
  padding: 1.25em;
  font: inherit;
  box-shadow: 0 0.5em 2em 0 rgba(0, 0, 0, 0.025);
  border: 1px solid black;
  width: 100%;
  letter-spacing: 0.015em;
  font-size: 0.8em;
}
#wip form input::-moz-placeholder {
  text-transform: uppercase;
  color: #999;
}
#wip form input::placeholder {
  text-transform: uppercase;
  color: #999;
}
#wip form button {
  padding: 1.25em 0;
  text-transform: uppercase;
  text-underline-offset: 0.1em;
  color: red;
  letter-spacing: 0.015em;
  font-size: 0.8em;
  font-family: inherit;
}
#wip form button:hover {
  text-decoration: underline;
}
