.layout {
        width: 100%;

        display: grid;
        grid:
          ". . ." auto
          "leftSide body rightSide" 1fr
          ". . ." auto
          / auto 906px auto;
      }

      .leftSide { grid-area: leftSide; }
      .body { grid-area: body; }
      .rightSide { grid-area: rightSide; }

      .bannerBefore, .bannerImg, .bannerAfter, .bannerLinks, .mainContent, .mainContentSONG, .mainContentSCRAP, .mainSidebar, .mainSidebarButtons, .footerMain, .footerText, .musAttFoot, .contentSongBoxLEFT, .albumCoverDiv, .mainRight {
          display: flex;
          flex-wrap: wrap;
          flex-direction: column;
      }

      .nav, .banner, .main, .mainContentCENTERMAIN, .mainContentTOP, .mainContentBOTTOM, .contentSitesButtonsDiv, .mainSidebarWario, .mainSidebarButtonDiv, .footer, .footerMainItems, .footerButtons, .contentSongBox, .musFooter, .songsContainer {
          display: flex;
          flex-wrap: wrap;
      }
      
      .nav a {
        height: 29px;
      }

      .navMarquee {
          height: 18px;
          width: 348px;
          background-color: #AFF6AE;
          font-family: MS UI Gothic;
          font-size: 13px;
          letter-spacing: 1px;
      }

      .bannerImg {
          width: 750px;
          background-color: #31B214;
      }
      
      #randomBanner {
        height: 150px;
        width: 750px;
      }

      img {
          height: fit-content;
          width: fit-content;
          image-rendering: pixelated;
      }
      
      #randomImage img {
          image-rendering: initial;
      }

      .bannerLinks a {
          height: 17px;
      }

      .mainContent {
          height: auto;
          width: 761px;
          background-image: url(https://skapasta.neocities.org/assets/img/music/V2/mainContentBG2.png);
          background-color: #AFF6AE;
      }

      .mainContentTOP, .mainContentBOTTOM {
          justify-content: space-between;
      }

      .mainContentCENTERMAIN {
          margin-left: 7px;
      }

      .mainContentSONG {
          margin-bottom: 7px;
      }

      .header {
          margin-bottom: 6px;
      }
      
      .webringDiv, .musAttFoot, .contentSitesButtonsDiv, .entryTextContainer {
          background-color: #DEDEDE;
      }

      .siteButton:hover, .siteButtonRight:hover, .siteButtonLeft:hover {
          animation: bounce 0.3s ease infinite;
          image-rendering: pixelated;
      }

      @keyframes bounce {
          0% { transform: scale(1.3); }
          50% { transform: scale(.98); }
          100% { transform: scale(1.3); }
      }
      
      .songsContainer {
        width: 747px;
        height: auto;
        justify-content: space-evenly;
      }
      
      .contentSongBox {
        height: 107px;
        width: 363px;
        margin-bottom: 7px;
      }
      
      .albumCover {
        height: 90px;
        width: 90px;
        margin-bottom: 1px;
        image-rendering: initial;
        outline: solid 1px black;
      }
      
      .musAttFoot {
        height: 99px;
        width: 256px;
        font-family: MS UI Gothic;
        color: black;
        font-size: 13px;
      }
      
      .musAttributes {
        height: 73px;
        padding-left: 8px;
      }
      
      .musAttText {
        height: 47px;
      }
      
      .audioPlayer {
        width: 246px;
        height: 21px;
        border: solid 1px black;
      }
      
      .musFooter {
        height: 26px;
        width: 264px;
      }
      
      .musDropdown {
        position: relative;
        display: inline-block;
      }
      
      .musDropdownContent {
        width: 330px;
        display: none;
        position: absolute;
        background-color: #F9F9F9;
        min-width: 160px;
        box-shadow: 5px 5px rgba(0,0,0,0.4);
        /* box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); */
        border: solid 1px #21242E;
        border-radius: 0px 0px 7px 7px;
        padding: 12px 16px;
        z-index: 1;
        right: 0;
      }
      
      .musDropdown:hover .musDropdownContent {
        display: block;
      }
      
      .musDropdownText {
        margin: 0;
      }
      
      .mainRight {
        height: auto;
        max-width: 7px;
      }
      
      .mainSidebar {
        height: auto;
        max-width: 109px;
      }

      .mainSidebarWario {
          background-color: black;
          max-width: 109px;
      }
      
      .mainSidebarButtons {
          width: 88px;
          height: 184px;
          padding-left: 4px;
          background-color: #6AEE6A;
          justify-content: space-evenly;
      }
      
      .mainSidebarButtons a {
          height: 31px;
      }
      
      .belowSidebarButtons {
        max-width: 109px;
      }
      
      .footerMain {
          width: 555px;
          height: 56px;
          background-color: #21242E;
      }
      
      .footerMainItems {
        justify-content: space-around;
        align-content: center;
        height: 53px;
      }
      
      .footerText {
        font-family: MS UI Gothic;
        font-size: 13px;
        text-align: center;
      }