:root {
  --font-family: rubik, sans-serif;
  --color-1: #140D69;
  --color-2: #FCA642;
  --color-3: #FAF041;
  --color-4: #00052F;
  --color-5: #C2C8D8;
  --color-6: #EFEFF2;
  --color-7: #F9C437;
}

* {
  position: relative;
  box-sizing: border-box;
}

body {
  margin: 0;
}

figure {
  margin: 0;
}

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

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

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: inherit;
}

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: 1120px) {
  #wip.medium {
    display: block;
  }
}
@media (min-width: 1120px) {
  #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;
  height: 100%;
  max-width: 20em;
  margin-left: auto;
  margin-right: auto;
}
#wip p {
  max-width: 100%;
  line-height: 140%;
  font-size: 0.75em;
  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.8rem;
}
#wip main input::-moz-placeholder {
  color: #999;
}
#wip main input:-ms-input-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.8rem;
}
#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: 20rem;
  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%;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  font-size: 0.8rem;
}
#wip form input::-moz-placeholder {
  color: #999;
}
#wip form input:-ms-input-placeholder {
  color: #999;
}
#wip form input::placeholder {
  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.8rem;
  font-family: inherit;
}
#wip form button:hover {
  text-decoration: underline;
}
