/* Comfortaa font */
@import url(https://fonts.googleapis.com/css?family=Comfortaa);
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Inter&family=Inter+Tight:wght@200;500&family=Kalam:wght@300&family=Rock+Salt&display=swap");
* {
  box-sizing: border-box;
}


body {
  height: 100vh;
  width:100vw;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  place-items: center;
  padding: 1rem;
  background: #252525;
  background-image: url("https://rayon-prod-kits.s3.amazonaws.com/img/background.png");
  background-size: cover;
  font-family: "Roboto";

  user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  overflow: hidden;
}

.container {
  display: grid;
  justify-self: center;
  padding: 20px;
  border: solid rgb(134, 134, 134);
  background-color: rgb(10, 10, 10);
  border-radius: 10px;
  box-shadow:  -3em rgba(0, 0, 0, 0.7), 0 0 0 2px rgb(255, 255, 255),
  03em 0.3em 10em rgba(0, 0, 0, 0.8);
  -webkit-tap-highlight-color: transparent;
}
.circles{
  width:100%;
  height: 20px;
  justify-content: space-between;
  align-items: flex-end;
  flex-direction:row ;
  display: flex;
}
.circle{
  border: solid rgb(134, 134, 134);
  border-radius: 10px;
  width: 20px;
  height: 20px;
}
.line-1{
  width: 20px;
  margin-left: 9px;
  margin-bottom: 36px;
  height: 1500px;
  border-left: 3px solid rgb(134, 134, 134);
  border-right: 1px solid rgba(134, 134, 134, 0);
  border-bottom: 1px solid rgba(134, 134, 134, 0);
  border-style: dotted;
}
.line-2{
  width: 20px;
  margin-right: 9px;
  margin-bottom: 36px;
  height: 1500px;
  bottom: 0px;
  border-right: 3px solid rgb(134, 134, 134);
  border-left: 1px solid rgba(134, 134, 134, 0);
  border-bottom: 1px solid rgba(134, 134, 134, 0);
  border-style: dotted;
}


@media only screen and (min-height: 900px) {
  .container {
    -ms-transform: scale(1.5);
    -webkit-transform: scale(1.5); 
    transform: scale(1.5);
  }
}

.wrap-1{
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.gap{
    height: 15px;
}
.subtext{
    color: grey;
    text-align: center;
    width:250px;
    margin-top: 7px;;
}
.title-para{
    text-align: center;
}
.subtitle{
    font-size: 18px;
    color: grey !important;
}
h1{
    font-size: 20px;
}

.wrap {
  cursor: pointer;
  --size: 4em;
  display: grid;
  height: 100%;
  grid-template-columns: repeat(3, var(--size));
  grid-gap: calc(var(--size) / 8);
}
.wrap div:not(.value) {
  cursor: arrow;
  color: grey;
  padding-top: 0.75em;
  text-align: center;
  border: solid 0.05em grey;
  border-radius: 0.3em;
  height: 4em;
}
.wrap div:not(.value):hover {
  color: white;
  border: solid 0.05em white;
}
.wrap div:not(.value):active {
  color: grey;
  border: solid 0.05em white;
  background-color: white;
}

.value {
  --size: 2em;
  display: grid;
  grid-template-columns: repeat(5, var(--size));
  justify-self: center;
  grid-gap: calc(var(--size) / 3);
  color: grey;
  height: 2em;
  text-align: center;
  margin-bottom: 1.4em;
}
.value div {
  width: 2em;
  height: 2em;
  padding-top: 0em;
  border-bottom: solid 0.1em grey;
  font-weight: lighter;
}
.value.wrong > div {
  color: grey;
  border-bottom: solid 0.15em grey;
}
.value.correct > div {
  color: white;
  border-bottom: solid 0.15em white;
}

.hint {
  color: grey;
  position: absolute;
  text-decoration: underline;
  width: 10em;
  height: 2em;
  background: white;
  padding: 0.5em;
  text-align: center;
}

.pass {
  color: white;
  font-weight: bold;
  text-align: center;
  margin-bottom: .4em;
}
.pass.show {
  visibility: visible;
}
.pass.hide {
  visibility: hidden;
}

.background{

  position: absolute;
  z-index:-1;
  top:0;
  left:0;
}

@media (aspect-ratio: 1/2) {
  div {
    background: #f9a; /* red */
  }
}

.link-download{
  color:white;
  text-decoration: underline;
}