* {
  font-family: Lucida Sans Typewriter, Lucida Console, monaco, Bitstream Vera Sans Mono, monospace; font-size: 24px; font-style: normal; font-variant: normal; font-weight: 700; line-height: 26.4px; } h3 { font-family: Lucida Sans Typewriter, Lucida Console, monaco, Bitstream Vera Sans Mono, monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 700; line-height: 15.4px; } p { font-family: Lucida Sans Typewriter, Lucida Console, monaco, Bitstream Vera Sans Mono, monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; line-height: 20px; } blockquote { font-family: Lucida Sans Typewriter, Lucida Console, monaco, Bitstream Vera Sans Mono, monospace; font-size: 21px; font-style: normal; font-variant: normal; font-weight: 400; line-height: 30px; } pre { font-family: Lucida Sans Typewriter, Lucida Console, monaco, Bitstream Vera Sans Mono, monospace; font-size: 13px; font-style: normal; font-variant: normal; font-weight: 400; line-height: 18.5667px; 
  }

html {
  margin: 0;
  padding: 0;

  height: 100%;
  max-width: 100vw;

  overflow-x: hidden;
  overflow-y: scroll;
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #ffd0c7;
  background-image: url("data:image/svg+xml;utf8, <svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'><polygon points='20,2 24,14 36,14 26,22 30,34 20,26 10,34 14,22 4,14 16,14' fill='%23FFFECE'/></svg>");
  background-repeat: repeat;
  background-size: 50px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 100vw;

  overflow-x: hidden;
  overflow-y: scroll;
}

main {
  background-color: #ffc1da;
  width: 60%;
  aspect-ratio: 2 / 1;

  display: flex;
  justify-content: center;
  align-items: center;

  border: 3px solid black;
  border-radius: 25px;
  padding: 5%;
}

label > p:first-child {
  margin-top: 0;
}

label > p {
  font-size: 20px;
  font-weight: 500;
}

.lower {
  display: flex;
  gap: 1rem;
}

#pwd-input {
  border: 2px solid black;
  border-radius: 25px;
  padding-inline: 1rem;
}

#pwd-input:focus {
  outline: none;
  border: 2px solid #a54f6f;
}

#btn {
  background-color: #ffc1da;
  outline: none;
  border: 2px solid black;
  font-size: small;
  padding-inline: 1rem;
  border-radius: 25px;
}

#btn:hover {
  cursor: pointer;
}

#btn:active {
  background-color: #dd87a9;
}

@media (max-width: 700px) {
  main {
    width: 85%;
  }

  .lower {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
    gap: 1rem;
  }

  label > p {
    font-size: 15px;
    font-weight: 500;
  }

  #btn {
    width: max-content;
  }
}

@media (min-width: 1100px) {
  main {
    width: 40%;
  }
}
