body {
  background-color: #ffe9e9;
  color: #000;
  font-family: "Reddit Sans";
}

.mainframe {
  display: flex;
  width: 100%;
  justify-content: center;
  margin: 100px auto;
}

.leftside {
  flex-direction: column;
}

.thts {
  display: inline-block;
  background-color: #fff;
  width: 500px;
  padding: 10px;
  border: solid 1px transparent;
  border-image-source: url(https://champanoy.neocities.org/thtsbd.png);
  border-image-slice: 8;
  border-image-width: 10px;
  border-image-outset: 3px;
  border-image-repeat: round;
  overflow: hidden;
  font-size: 14px;
}

.thts p {
  padding: 0 20px;
}

.thts a {
  color: #ff8080;
}

.thts a:visited {
  color: #ff8080;
}

.thts a:hover {
  color: red;
}

.thts a:active {
  color: red;
}

.scroll {
  height: 280px;
  overflow-x: hidden;
  overflow-y: scroll;
}

.rightside {
  flex-direction: column;
}

.sleeves {
  width: 500px; 
}

.albc {
  width: 300px;
  height: 300px;
  margin: 16px;
  position: absolute;
  z-index: 10;
  
}

.cd {
  width: 250px;
  height: 250px;
  margin: 40px 0;
  position: absolute;
  z-index: 1;
}

// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 200 to 900

.reddit-sans-<uniquifier> {
  font-family: "Reddit Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  border: solid 1px #e0e0e0;
  border-radius: 15px;
}
 
::-webkit-scrollbar-thumb {
  background: #fffddd;
  border: solid 1px #e0e0e0;
  border-radius: 15px;
}

::-webkit-scrollbar-thumb:hover {
  background: #fffcd0; 
}