@font-face {
  font-family: 'FreePixel';
  src: url('fonts/FreePixel.ttf') format('truetype');
}
html, body {
  margin: 0;
  padding: 0;
}

body {
  background: url("FULL1.png") top center no-repeat;
  background-size: cover;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  font-family: 'FreePixel', monospace;
  
  font-size: 20px;
  line-height: 1.6;
}

.container {
  width: 80%;
  max-width: 1000px;
  margin: 40px 0 40px 150px;
}

.box {
  margin-bottom: 40px;
  padding: 30px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  text-align: center;

  clip-path: polygon(
    0px 8px,
    8px 8px,
    8px 0px,
    calc(100% - 8px) 0px,
    calc(100% - 8px) 8px,
    100% 8px,
    100% calc(100% - 8px),
    calc(100% - 8px) calc(100% - 8px),
    calc(100% - 8px) 100%,
    8px 100%,
    8px calc(100% - 8px),
    0px calc(100% - 8px)
  );
}

.side-box {
  position: fixed;
  top: 30px;
  right: 10px;
  width: 250px;
  max-height: 73vh;      /* keeps it inside the screen */
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border-radius: 12px;
  text-align: center;
  overflow-y: auto;      /* makes it scroll vertically */
}

.side-box::-webkit-scrollbar {
  width: 8px;
}

.side-box::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.side-box::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}

/*music players*/
.music-player {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.music-player iframe {
  border: 0;
  width: 300px;
  height: 42px;
}