@font-face {
  font-family: "Pink Blue";
  src: url("../assets/fonts/Pink Blue.ttf") format("truetype");
  font-weight: normal;
}
@font-face {
  font-family: "Readex Pro";
  src: url("../assets/fonts/ReadexPro.ttf") format("truetype");
}
@font-face {
  font-family: "Intruding Cat";
  src: url("../assets/fonts/IntrudingCat.ttf") format("truetype");
  font-weight: normal;
}
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Readex Pro", sans-serif;
  overflow: hidden;
}

.popup {
  position: fixed;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
  background-color: #3f5be3;
  color: #fff;
  text-align: center;
  font-size: 24px;
}
.popup.hidden {
  display: none;
}
.popup p {
  max-width: 600px;
}
.popup button {
  margin-top: 24px;
  outline: none;
  border: none;
  background-color: #fff;
  color: #3f5be3;
  padding: 12px 24px;
  cursor: pointer;
  border-radius: 8px;
  min-width: 200px;
  font-family: "Readex Pro", sans-serif;
  font-size: 16px;
  font-weight: 500;
}

@media screen and (min-width: 800px) {
  .size-warning {
    display: none;
  }
}
.container {
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5vh;
}
.container .row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: fit-content;
}
.container .row.top-row {
  gap: 5vw;
  transform: translateX(5vw);
}
.container .row.top-row > img {
  width: 30vw;
  max-width: 600px;
  min-width: 300px;
}
.container .row.bottom-row {
  gap: 5vw;
  transform: translateX(-10vw);
}
.container .row .note.note-1 {
  transform: rotate(1deg);
}
.container .row .note.note-2 {
  transform: rotate(0.5deg);
}
.container .row .note.note-3 {
  transform: rotate(-0.5deg);
}

.note {
  aspect-ratio: 1;
  width: 22vw;
  max-width: 420px;
  min-width: 250px;
  font-family: "Intruding Cat";
  text-decoration: none;
  color: black;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: -3px 5px 12px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  z-index: 100;
  transform-style: preserve-3d;
}
.note.red {
  background-color: #ff675f;
}
.note.orange {
  background-color: #ff8939;
}
.note.green {
  background-color: #64bf28;
}
.note.purple {
  background-color: #6d51f4;
}
.note.pink {
  background-color: #ee8aff;
}
.note.black {
  background-color: #414042;
}
.note.brown {
  background-color: #a97c50;
}
.note.yellow {
  background-color: #f9ed32;
}
.note.light-blue {
  background-color: #30d8d8;
}
.note.dark-blue {
  background-color: #27aae1;
}
.note .label {
  position: absolute;
  right: 0;
  font-size: clamp(20px, 2vw, 30px);
  padding: 10% 5%;
  transform: translateZ(1px);
}
.note p {
  padding-top: 10%;
  font-size: clamp(40px, 4vw, 72px);
  text-align: center;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  transform: translateZ(1px);
}
.note img {
  position: absolute;
  top: 4%;
  left: 0;
  transform: translateX(calc(-100% + 23px)) translateZ(-1px);
  height: 90%;
  z-index: -1000;
}

/*# sourceMappingURL=index.css.map */
