body {
  background-image: url('../imgs/access_key.png');
  background-repeat: no-repeat;
  background-size: 100vw 100vh;
}

.No-clue-here{
	position: absolute;
	top: 30vh;
	left: 30vw;
	text-align: center;
  /*background-color: white;*/
  border-radius: 25px;
  backdrop-filter: blur(3px) opacity(0.6);
  width: 35vw;
  min-width: 380px;
  height: 40vh;
  min-height: 260px;
  color: white;
}
.form{
	padding-top: 3vh;
}
.submit {
  font-family: "Special Elite";
  letter-spacing: 2px;
  font-size: 20px;
  display: inline-block;
  position: relative;
  border: none;
  outline: none;
  background-color: transparent;
  height: 40px;
  min-width: 130px;
  color: white;
  cursor: pointer;
  text-transform: uppercase;
  text-align: center;
  padding: 0;
}
.submit:hover .name {
  opacity: 0;
}
.submit:hover .letters {
  opacity: 1;
}
.submit:hover .letters-list > li:not(:first-child) {
  margin-left: 2px;
}
.submit .name {
  opacity: 1;
  line-height: 40px;
  background: transparent;
}
.submit .letters {
  opacity: 0;
  position: absolute;
  top: 0;
  height: 100%;
  white-space: nowrap;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.25s;
}
.submit .letters-list {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
  height: 100%;
}
.submit .letters-list > li {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /*width: 40px;*/
  background: transparent;
  transition: margin 0.25s;
  /*animation: glitch 0.5s infinite;*/
}
.submit .letters-list > li:not(:first-child) {
  margin-left: -10px;
}