@import url("https://fonts.googleapis.com/css2?family=EB+Garamond&display=swap");

@font-face {
  font-family: "MachineLearningFont";
  /* This is an arbitrary name -- whatever works for you */
  src: url("https://cdn.glitch.com/e7e6c59c-f2c2-4680-b1bb-b06b2f0b313a%2FMachineLearningFont-v2.otf?v=1608679905189"),
    url("https://cdn.glitch.com/e7e6c59c-f2c2-4680-b1bb-b06b2f0b313a%2FMachineLearningFont-v2.otf?v=1608679905189") format("otf");
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

@-webkit-keyframes blink {
  50% {
    opacity: 0;
  }
}

body {
  font-family: adobe-caslon-pro, serif;
  background: white;
  display: flex;
  flex-direction: column;
  height: 300vh;
}

.captcha {
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  box-sizing: border-box;
  margin: 0;
  z-index: 300;
  position: fixed;
  top: 0;
  padding: 0;
  transition: ease .5s;
  opacity: 1;
}

/*
.backgroundblack{

  background: black;
  opacity: 0.7;
  width: 100%;
  height: 100%;
}
*/
.console {
  background: white;
  text-align: center;
  color: black;
  font-size: 14px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.console--instruction {
  margin-bottom: 20px;
  padding-top: 20px;
}

.console--error {
  padding-top: 0px;
  margin: 10px;
  opacity: 0;
  transition: 0.5s ease;
}

.console--input__wrapper {
  display: flex;
}

.console--input {
  width: min(5vw, 30px);
  height: 40px;
  margin: 0 4px;
  background: white;
  border: 1px solid black;
  border-radius: 0px;
  color: transparent;
  text-shadow: 0 0 0 white;
  position: relative;
  opacity: 1;
  padding: 0;
}

.console--hyphen {
  display: flex;
  align-items: center;
  height: 100%;
}

.console--field:focus {
  outline: none;
  border-radius: 0px;
}

.console--input:focus-within::after {
  content: "";
  position: absolute;
  height: 1px;
  width: min(4vw, 25px);
  margin: 0 2px;
  box-sizing: border-box;
  background: black;
  bottom: 3px;
  display: block;
  animation: blink 1s step-start 0s infinite;
  -webkit-animation: blink 1s step-start 0s infinite;
}

.console--field {
  width: 100%;
  height: 100%;
  background: transparent;
  border-radius: 0px;
  color: transparent;
  font-family: "MachineLearningFont";
  font-size: 20px;
  text-shadow: 0 0 0 black;
  margin: 0;
  padding: 0;
  border: none;
  text-align: center;
}

.console--button {
  font-family: adobe-caslon-pro, serif;
  color: black;
  width: 90px;
  padding: 8px 0 3px 0;
  border: 1px solid black;
  text-align: center;
  /*line-height: 100%;*/
  background: transparent;
}

.console--button:hover {
  background: black;
  color: white;
}

.console--button:focus {
  outline: none;
}

.content {
  font-family: "MachineLearningFont";
  margin: auto;
  color: black;
  /* padding: 12%; */
}

.console--hyphen {
  padding-top: 8px;
}

credits {
  font-family: "MachineLearningFont";
  color: black;
  font-size: min(7vw, 40px);
}

/*liquify*/
/*
canvas {
  position: absolute;
  z-index: -2;
  background-size: contain;
}
*/