body {
   background-color: rgb(14, 14, 14);
   color: rgb(255, 255, 255);
   font-family: "Inter", sans-serif;
   margin: 0;
   height: 100vh;
}

body.idiot {
  display: flex;
  justify-content: center;
  align-items: center;
}

body.idiot img {
  width: 50%;
  max-width: 400px;
  user-select: none;
}

#tiny {
  position: fixed;
  inset: 0; 
  background-color: rgb(14, 14, 14);
  display: none; 
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#tiny img {
  width: 300px;
  max-width: 80vw;
  height: auto;
}


.title {
   position: relative;
   display: inline-block;
   text-align: center;
   left: 50%;
   transform: translateX(-50%);
}

.arrow {
   position: absolute;
   top: 120%;
   left: 100%;
   transform: translateY(-50%) rotate(-4deg);
   width: 60px;
}

.thing {
   width: 90%;
   max-width: 800px;
   padding: 40px;
}

.bottom {
   position: relative;
   height: 400px;
   margin-top: -435px;
   z-index: 2;
}

.trampoline {
   position: absolute;
   bottom: 0;
   right: 100px;
   width: 150px;
}

.kitty {
   position: absolute;
   bottom: 60px;
   right: 130px;
   width: 100px;
   transform-origin: center center;
}

.noselect {
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
/* thanks gpt for the firefox noselect */

h1 {
   font-size: 80px;
   margin: 0;
   padding-top: 20px;
}

h2 {
   font-size: 25px;
   margin-top: 50px;
   margin-bottom: 15px;
   margin-left: 20px;
}

li {
   font-size: 20px;
   font-weight: 400;
   list-style: none;
   margin-left: 10px;
   margin-top: 2px;
}

/* fuck u if ur using firefox i forgot how to remove */
::-webkit-scrollbar {
   display: none;
}