/* Font Butterfly Kids */
    .butterfly-kids-regular {
        font-family: "Butterfly Kids", cursive;
        font-weight: 400;
        font-style: normal;
    }

  .major-mono-display-regular {
    font-family: "Major Mono Display", monospace;
    font-weight: 100;
    font-style: normal;
  }

    .lexend-giga {
      font-family: "Lexend Giga", sans-serif;
      font-optical-sizing: auto;
      font-weight: 200;
      font-style: normal;
    }

    /* Font Bagel */
    .bagel-fat-one-regular {
    font-family: "Bagel Fat One", system-ui;
    font-weight: 400;
    font-style: normal;
    }

  .sour-gummy {
    font-family: "Sour Gummy", sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
    font-variation-settings:
      "wdth" 100;
  }


  .fuzzy-bubbles-regular {
    font-family: "Fuzzy Bubbles", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

    body, html {
      position:relative;
      padding: 0;
      font-family: monospace;
      background: url('images/bggrid-transp.png') repeat center;
      background-color: #eef7ff;
      scrollbar-color: #f0afcd transparent;
    }

    :root {
      --page-scale: 1.31;
    }

    .header, .footer {
      height: 16.875rem;
      width: 100%;
      color: transparent;
    }
    .header { position: relative; top: 0; }
    .footer { position: absolute; top: 62.5rem; height: 12.5rem;}


    .wrapper {
      left: 50%;  
      transform: translateX(-50%);
      width: min(68.75rem, 96vw);
      height: auto;
      min-height: calc(38.125rem * var(--page-scale));
      border-radius: 10px;
      border: solid #adb7ca 2px;
      background: #ffffff;
      box-shadow: -0.625rem 0.625rem 0.625rem rgba(0,0,0,0.25);
      padding: 0.8125rem;
      z-index: 0;
      position: relative;
      box-sizing: border-box;
    }

  .nav-buttons {
    top: 0.125rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 0.625rem;
    position: relative; /* create new stacking context */
    z-index: 5;         /* above the GIFs */
  }

  .nav-button {
    all: unset;
    width: 6.875rem;
    height: 2.5rem;
    background-image: url('images/pinknavbutton.png');
    background-size: cover;
    display: flex;
    align-items: center;
    font-family: "Fuzzy Bubbles", monospace;
    font-size: 1rem;
    cursor: pointer;
    text-indent: 0.875rem;
    position: relative;
    z-index: 6;
  }

  .lace-divider {
    position: absolute;
    top: 3.125rem;
    left: 0;
    width: 100%;
    height: 3.75rem;
    background: url('images/lacedivider.png') repeat-x;
    z-index: 0;
  }


  .main-footer{
    position: relative;
    justify-content: center;
    text-align: center;
    display: flex;
    position: absolute;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    height:6.25rem;
    width: 100%;
    bottom:0;
    left:0;
    z-index: 4;
  }

  .main-footer-div{
    position: absolute;
    background-repeat: repeat-x;
    background-image: url('images/strawberrydivider.png');
    height: 5rem;
    width: 100%;
    bottom:0;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
  }

  .navigation-bar{
    margin-bottom: 0.3125rem ;
    height: 1.875rem;
    width: 98%;
    padding: 0.3125rem;
    box-shadow: inset;
    border: solid #b1b8c8 2px;
  }

.hearts {
  width: 6.25rem;
  text-align: right;
  font-size: 1rem;
}

.tab-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  color: #703c4a;
  max-width: 71.25rem; /* adjust if needed */
  margin-left: 1%;
}

.music-name,
  .artist-name{
    height: 1.0625rem;
    font-size: 0.75rem;
    text-align: center;
    text-transform: capitalize;
    margin: 0.5rem 0.625rem 0.625rem 0.625rem;
  }

  .song-slider {
    position: relative;
    width: 12.5rem;
    height: 1.25rem;
  }

  .seek-bar {
    position: absolute;
    left: 3rem;
    top: 0.75rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 11.875rem;
    overflow: hidden;
    height: 0.3125rem;
    border-radius: 10px;
    background-color: #b1c5f1;
    cursor: pointer;
    z-index: 6;
  }

  .seek-bar::-webkit-slider-thumb{
    -webkit-appearance: none;
    width: 0.625rem;
    height: 0.9375rem;
    background: #613d2a;
    box-shadow: -25rem 0 0 25rem #885c44;
  }

  .current-time,
  .song-duration {
    width: 17.5rem;
    position: absolute;
    margin: none;
    top: 0.625rem;
    font-size: 0.625rem;
  }

  .song-duration{left: 15.625rem;width: 2.5rem;}
  .current-time{left: 0;}

  .controls{
    width: 4rem;
    display: flex;
    align-items: center;
  }

  .play-button{
    position:relative;
    width: 1.875rem;
    height: 1.875rem;
    border-radius: 50%;
    background: #ffff;
    cursor: pointer;
    border: none;
  }

  .play-button span{
    position: absolute;
    top: 50%;
    left: 35%;
    transform: translateY(-50%);
    width: 0.3125rem;
    height: 0.75rem;
    border-radius: 1px;
    background: #885c44;
    transition: .5s;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.play-button span:nth-child(2){
    left: 55%;
    transform-origin: center;
}

.play-button.pause span:nth-child(2){
    transform: translateY(-50%) scaleY(0);
}

.play-button.pause span:nth-child(1){
    width: 35%;
    height: 45%;
    left: 53%;
    transform: translate(-50%, -50%);
    border-radius: 0;
    clip-path: polygon(0 0, 100% 50%, 100% 50%, 0% 100%);
}


.btn{
    position: relative;
    width: 1.875rem;
    height: 1.875rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
    background-color: #ffff;
}

#forwardbutton{
    position: absolute;
    height: 0.9375rem;
    justify-content: center;
    align-items: center;
    z-index: 9;
}

#backbutton{
    position: absolute;
    height: 0.9375rem;
    justify-content: center;
    align-items: center;
    z-index: 9;
}

#song-bar{
  display: flex;
  flex-direction: row;
}

.marquee{
  overflow: hidden;
  position: relative;
  left: 8.125rem;
  width: 21.25rem;
}

#marquee-content p{
  display: inline;
  margin: 0.5rem 0 0.625rem 0 ;
}

.marquee-content {
  transform: translateX(70%);
  position:relative;
  height: 1.875rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  white-space: nowrap;
  gap: 1rem;
  width: 21.25rem;
  animation: marquee-move-text 100s linear infinite;
  animation-play-state: paused;
}

.marquee-content.play{
  animation-play-state: running;
}

button.backwardbutton,
button.forwardbutton{
  z-index: 9;
}

@keyframes marquee-move-text{
  from{
    transform: translateX(0%);
  }
  to{
    transform: translateX(-1000%);
  }
}

  #hobbies-main {
      grid-area: 4 / 1 / 10 / 9;
      margin: 1.25rem 1.875rem 3.75rem 1.875rem;
      background: #ffffff;
      border: solid #b1b8c8 2px;
      padding: 0.3125rem;
      box-shadow: 0 0 0.625rem 0.3125rem rgba(246, 67, 151, 0.2);
    }

  .hobbies-wrapper{
    position: relative;
    width: 99%;
    height: calc(33.6875rem * var(--page-scale));
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: grid;
    grid-template-columns: repeat(17, calc(3.125rem * var(--page-scale)));
    grid-template-rows: repeat(11, calc(3.0625rem * var(--page-scale)));
    border: solid #b1b8c8 2px;
  }

  [data-tab-content] {
  display: none;
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.5s ease, transform 0.5s ease;
  }

  [data-tab-content].active {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }


  .tabs{
    font-family: "Lexend Giga";
    align-items: center;
    text-align: center;
    height: 2.1875rem;
    width: 43.125rem;
    display: flex;
    gap: 0.625rem;
    list-style-type: none;
    margin: 0 0.625rem 0 0;
    padding: 0%;
  }

  .tab{
    font-size: 0.75rem;
    color: #703c4a;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    width: 8.75rem;
    height: 1.875rem;
    border-radius: 15px 15px 0 0 ;
    box-shadow: 0 0.625rem 0.625rem 0 rgba(255, 255, 255, 0.466) inset;
    background: #c5d0d8;
  }

  .tab p, .tab.active p{
    margin: 0.5625rem;
  }

  .tab:hover{
    background: #dee7ed;
  }

  .tab.active{
    background: #cde6f7;
  }


.hobbies-sidebar{
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0 0.25rem 0 0.5rem;
  grid-area: 1 / 1 / 12 / 6;
  background-color: #e4efff;
  display: grid;
  border-right: solid #b1b8c8 2px;
  grid-template-columns: repeat(6, calc(2.5375rem * var(--page-scale)));
  grid-template-rows: repeat(12, calc(2.55rem * var(--page-scale)));
}

.hobbyimg{
  margin: 0.1875rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.hobby-sidebar-photos {
  grid-area: 2 / 1 / 6 / 7;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0.25rem;
  margin: 0.1875rem;
}

.hobby-sidebar-photos .hobbyimg {
  min-height: calc(4.5rem * var(--page-scale));
}

#sidebar-heading{
  text-indent: 0.625rem;
  grid-area: 1 / 1 / 2 / 7;
  font-family: sans-serif;
  margin-top: 0.625rem;
}


.hobbies-content{
  padding: 0.0625rem 0 0.625rem 1.875rem;
  overflow-x: hidden;
  margin:0.3125rem 1.5625rem 0.3125rem 0.3125rem;
  grid-area: 1 / 6 / 12 / 18;
  scrollbar-color: #c0c0c0 transparent;
  scrollbar-width: thin; 
  overflow-y: auto; 
}

.hobbies-content-scale {
  width: calc(32.8125rem * var(--page-scale));
  min-height: calc(182.8125rem * var(--page-scale));
}

.hobbies-content-inner{
    transform: scale(var(--page-scale));
    transform-origin: top left;
    height: 182.8125rem;
    width: 32.8125rem;
    display: grid;
    grid-template-columns: repeat(7, 4.6875rem);
    grid-template-rows: repeat(50, 4.6875rem);
}

.nav-buttons {
  top: 0.125rem;
  margin-left: 0.625rem;
  display: flex;
  justify-content: left;
  align-items: center;
  height: 100%;
  gap: 0;
  position: relative; /* create new stacking context */
  z-index: 5;         /* above the GIFs */
}

.nav-button{
  all: unset;
  position:relative;
  color: #703c4a;
  text-align: center;
  text-decoration: none; /* Remove underline */
  font-weight: bold;     /* Make it bold */
  font-size: 0.9375rem;       /* Set font size */
  font-family: sans-serif;
}

.nav-button p{
  margin: 0.3125rem;
}

.nav-button:hover{
  cursor: pointer;
}

.nav-button::after {
  content: "|";
  margin: 0 0.625rem;
  color: #703c4a; /* match button text color */
}

.nav-button:last-child::after {
  content: "";
}

.belowphotos p{
  margin: 0.3125rem 0 0.3125rem 0;
}

.belowphotos{
  grid-area: 6 / 1 / 8 / 7;
  margin: 0.3125rem;
  font-family: sans-serif;
  font-size: 0.875rem;
  border-bottom: solid #c8b1bc 2px;
}

.about{
  grid-area: 8 / 1 / 12 / 7;
  font-family: sans-serif;
}

.belowphotos a:visited{
  color: #000000;
}

.about p{
  font-size: 0.75rem;
  line-height: 1.25rem;
}

.totorogif{
  grid-area: 12/ 6 / 13 / 7;
  margin-bottom: 0.625rem;
  background: url('images/totoro.gif');
  background-size: contain;
  background-repeat: no-repeat;
}

.si{
  grid-area: 3 / 4 / 5 / 8;
  width: 18.75rem;
  margin-top: 2.5rem;
  background: url("images/si.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  overflow: visible;
  z-index: 3;
}

.si-memopad{
  grid-area: 1 / 1 / 5 / 6;
  background: url("images/notecars.jpg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2;
  font-size: .75rem;
}

#si-title{
  grid-area: 1 / 5 / 3 / 8;
  font-family: "Major Mono Display", monospace;
  z-index: 4;
  font-size: 2.5rem;
  margin: 1.25rem
}

#si-memopad-about{
  align-items: center;
  justify-content: center;
  margin: 6.875rem 3.75rem 0 4.375rem;
  transform: rotate(-6deg);
}

.si-done{
  grid-area: 5 / 3 / 9 / 8;
  background: url("images/simemo.jpg");
  background-size: contain;
  background-position-x: left;
  background-repeat: no-repeat;
}

.si-todo{
  grid-area: 7 / 1 / 11 / 5;
  background: url("images/stickynote.png");
  background-size: contain;
  background-position: center;
  background-position-x: left;
  font-size: .75rem;
  background-repeat: no-repeat;
}

.crab{
  grid-area: 3 / 2 / 6 / 4;
  background: url("images/bluecrab.png");
  background-size: contain;
  background-position: center;
  margin-top: 3.75rem;
  background-position-x: right;
  background-repeat: no-repeat;
  z-index: 4;
  width: 12.5rem;
}

#si-done{
  text-align: center;
  font-size: 0.625rem;
  justify-content: center;
  align-items: center;
  margin: 4.375rem 3.75rem 0 3.75rem;
}

#si-todo{
  text-align: center;
  justify-content: center;
  align-items: center;
  margin: 4.5rem 3.125rem 0 0;
}

.shell{
  background: url("images/shell.png");
  background-size: contain;
  background-position: center;
  margin-bottom: 2.25rem;
  grid-area: 6 / 1 / 8 / 3;
  z-index: 6;
  background-repeat: no-repeat;
}

.jelly{
  grid-area: 8 / 4 / 11 / 8;
  background: url(images/bluejelly.png);
  transform: rotate(70deg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 17.1875rem;
}

.slideshow-container{
    grid-area: 11 / 1 / 16 / 8;
    margin: 0 1.25rem 0 0.625rem;
    background: url(images/slideshowbackground.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.slideshow-container-inner{
  width: 26rem;
  height: 16.5rem;
  left: 0.625rem;
  top: 2.8125rem;
  margin: 0 0 0 2.3125rem;
  position: relative;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

.mySlides img {
  width: 100%;
  display: block;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  color: #ccdaf7;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -1.375rem;
  padding: 1rem;
  font-weight: bold;
  font-size: 1.125rem;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* Caption text */
.text {
  left: -2%;
  font-size: 0.625rem;
  padding: 0.5rem 0;
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: -20%;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 0.75rem;
  padding: 0.5rem 0.75rem;
  position: absolute;
  top: 0;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

.accord{
  grid-area: 24 / 1 / 28 / 6;
  background: url(images/accord.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  overflow: visible;
  margin-top: 1.875rem;
  z-index: 5;
}

.accordmemo{
  grid-area: 23 / 5 / 29 / 8;
  background:url(images/accordmemo.png);
  background-size: contain;
  background-position: center;
  overflow: visible;
  background-repeat: no-repeat;
}

.shark{
  grid-area: 23 / 4 / 25 / 7;
  margin: 1.25rem 0 0 1.25rem;
  background: url(images/shark.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.si-2012-title{
  grid-area: 16 / 1 / 17 / 5;
  font-family: "Major Mono Display", monospace;
  font-size: 1.875rem;
}

.si2{
  grid-area: 16 / 3 / 20 / 9;
  background: url('images/si2012.png');
  background-size: contain;
  z-index: 2;
  transform: rotate(2deg);
  margin: 0 1.25rem 2.5rem;
  background-position: center;
  background-repeat: no-repeat;
}

.sipar-2012{
  margin: 3.75rem;
  width: 10.625rem;
  font-size: .75rem;
}

.koi{
  grid-area: 19 / 5 / 22 / 7;
  background: url('images/pearlkoi.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.pearl-shell{
  grid-area: 21 / 6 / 23 / 8;
  margin-right: 0.625rem;
  background: url('images/pearlshell.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(-10deg);
}

.fishbowl{
  background: url('images/fishbowl.png');
  grid-area: 15 / 6 / 18 / 8;
  background-repeat: no-repeat;
  background-size: contain;
  width: 90%;
  transform: rotate(6deg);
  margin-top: 1.5625rem;
}

.clipboard{
  grid-area: 18/ 1 /23 / 6;
  margin-left: 0.625rem;
  background: url(images/2012simemo.jpg);
  transform: rotate(-2deg);
  background-size: contain;
  background-repeat: no-repeat; 
}

.accord-title{
  grid-area: 23 / 1 / 25 / 5;
  font-family: "Major Mono Display", monospace;
  font-size: 1.875rem;
}

.accord-title p{
  margin: 2.5rem 0 0 1.25rem;
}

.accord-memo-inner{
   grid-area: 23 / 5 / 29 / 8;
   transform: rotate(4deg);
   margin: 7.5rem 1.25rem 0 3.125rem;
   align-items: center;
}

.accord-memo-inner p{
  font-size: 0.75rem;
}

.accord-todo-img{
  grid-area: 27 / 1 / 30 / 3;
  margin-top: 1.875rem;
  margin-left: 1.25rem;
  width: 8.125rem;
  background-image: url(images/shark2.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.accord-done-img{
  grid-area: 29 / 6 / 32 / 8;
  height: 9.375rem;
  margin-top: 0.625rem;
  margin-left: 1.25rem;
  background-image: url(images/surprisegirl.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.accord-memo2{
  padding: 8.75rem 1.25rem 1.25rem 1.25rem;
  grid-area: 28 / 2 / 34 / 7;
  font-size: 0.875rem;
  background: url(images/accordmemo2.jpg);
  background-size: contain;
  background-position: center;
  font-family: "Major Mono Display", monospace;
  background-repeat: no-repeat;
  margin-top: 0.625rem;
}

.toastcat{
  grid-area: 33 / 1 / 35 / 3;
  background: url(images/cattoast.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

#frs-title{
  grid-area: 34 / 3 / 35 / 7;
  margin: 0.625rem;
  margin-top: 1.875rem;
  font-size: 2.1875rem;
  font-family: "Major Mono Display", monospace;
} 

.frs-memo{
  grid-area: 35 / 1 / 40 / 5;
  background: url(images/frsmemo.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 2.5rem;
  z-index: 1;
  margin-left: 1.25rem;
}

#frs{
  font-family: "Major Mono Display", monospace;
  font-size: 0.9375rem;
  margin: 4.375rem 3.75rem 0 1.875rem;
}

.frs1{
  grid-area: 35 / 4 / 38 / 8;
  background: url(images/frs.png);
  background-size: contain;
  background-position: center;
  margin-top: 1.25rem;
  margin-left: 1.25rem;
  background-repeat: no-repeat;
  z-index: 2;
}

.frs2{
  grid-area: 37 / 4 / 40 / 8;
  background: url(images/frs2.png);
  background-repeat: no-repeat;
  z-index: 2;
  background-size: contain;
  background-position: center;
  margin-top: 1.25rem;
  margin-left: 1.25rem;
}

.whale{
  grid-area: 40 / 1 / 43 / 4;
  background: url(images/whale.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(10deg);
}

#cayman-title{
  font-family: "Major Mono Display", monospace;
  grid-area: 40 / 4 / 41 / 8;
  margin: 1.875rem;
  font-size: 2.25rem;
  z-index: 3;
}

.cayman{
  grid-area: 42 / 4 / 45 / 8;
  background: url(images/cayman.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.cayman-memo{
  grid-area: 41 / 1 / 46 / 5;
  background: url(images/caymanmemo.jpg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  font-size: 0.75rem;
}

.cayman-memo p{
  text-align: center;
  margin: 6.875rem 4.6875rem 0 2.5rem;
  z-index: 5;
}

.shells{
  display: flex;
  flex-direction: row;
  height: 4.1875rem;
  gap: 0.9375rem;
  grid-area: 47 / 1 / 48 / 8;
}

@media (max-width: 52rem) {
  :root {
    --page-scale: min(
      1.31,
      calc((100vw - 2rem) / 32.8125rem)
    );
  }

  .header,
  .footer {
    height: 4rem;
  }

  .wrapper {
    width: min(68.75rem, 96vw);
    padding: 0.5rem;
    min-height: auto;
  }

  .tab-container {
    width: 100%;
    margin-left: 0;
    flex-wrap: wrap;
    gap: 0.375rem;
  }

  .tabs {
    width: 100%;
    height: auto;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin: 0;
  }

  .tab {
    width: auto;
    min-width: 5.5rem;
    flex: 1 1 calc(50% - 0.375rem);
  }

  .hearts {
    display: none;
  }

  .navigation-bar {
    height: auto;
    min-height: 1.875rem;
  }

  .hobbies-wrapper {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    border: solid #b1b8c8 2px;
  }

  .hobbies-sidebar {
    display: none;
  }

  .hobbies-content {
    grid-area: unset;
    width: 100%;
    margin: 0;
    padding: 0.25rem 0 0.5rem 0;
    max-height: none;
    overflow-x: hidden;
  }

  .hobbies-content-scale {
    width: calc(32.8125rem * var(--page-scale));
    min-height: calc(182.8125rem * var(--page-scale));
  }

  .nav-buttons {
    flex-wrap: wrap;
    gap: 0.25rem 0.5rem;
    justify-content: center;
  }

  #song-bar {
    height: auto;
    display: grid;
    grid-template-columns: auto auto;
    justify-content: center;
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
    gap: 0.25rem;
    padding: .5rem 3rem .3rem;
  }

  #song-bar .controls {
    width: auto;
    /* gap: 0.125rem; */
    grid-column: 1;
    grid-row: 1;
  }

  #song-bar .song-slider {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    width: auto;
    height: auto;
    grid-column: 2;
    grid-row: 1;
  }

  #song-bar .seek-bar {
    position: static;
    width: 11rem;
    top: auto;
    left: auto;
  }

  #song-bar .current-time,
  #song-bar .song-duration {
    position: static;
    width: auto;
    top: auto;
    left: auto;
    margin: 0;
  }

  #song-bar .marquee {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    left: 0;
    overflow: hidden;
  }

  #song-bar .marquee-content {
    width: 100%;
  }

  #song-bar #marquee-content p,
  #song-bar .music-name,
  #song-bar .artist-name {
    margin: 0;
  }
}

.craft-section{
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Major Mono Display", monospace;
  font-size: 1.875rem;
  margin: .5rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.25rem;
}

#craft1{
  grid-area: 1 / 1 / 5 / 8;
  background: red;
}

@media (max-width: 32rem) {
  :root {
    --page-scale: min(
      0.88,
      calc((100vw - 1.5rem) / 32.8125rem)
    );
  }

  .wrapper {
    padding: 0.375rem;
  }

  .tab {
    flex: 1 1 100%;
  }
}
