body {
  background-image: url("https://i.pinimg.com/1200x/69/5b/7d/695b7dd10e49876a20e0c2fdba634b8f.jpg");
  background-size:cover;
   font-family: "Meddon", cursive;
   cursor:url("https://pixelsafari.neocities.org/favicon/animals/bug/butterfly26.gif"), auto;
}

/* MAIN FRAME */

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.5s ease;
}

#loader img {
  width: 200px;
}

.container {
  width: 900px;
  margin: auto;
  border: 3px black;
  background: #fff0f5;
  padding: 10px;
}

/* HEADER */
.header {
  background-image: url("https://i.pinimg.com/1200x/7a/7c/58/7a7c581c038c00bf0d8e507ab884c28c.jpg");
  background-size: cover;
  height: 150px;
  text-align: center;
  border: 2px MediumVioletRed solid;
}

.header h1 {
  font-size: 40px;
  font-family: "Meddon",cursive;
  font-weight: bold;
  color:black;
  background:transparent;
  padding-top: 40px;
}

/* NAV */
.image-marquee {
  overflow: hidden;
  width: 100%;
}

.track {
  display: flex;
  width: max-content;
  animation: scroll 35s linear infinite;
}

.track img {
  width: 150px;
  height: auto;
  margin-right: 10px;
  flex-shrink: 0;
}

.nav a {
  position:relative;
  top:-10px;
  margin: 10px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-family:"Meddon",cursive;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* MAIN LAYOUT */
.main {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.left, .right {
  width: 25%;
}

.center {
  width: 50%;
}

/* BOXES */
.box {
  background: white;
  border: 2px MediumVioletRed solid;
  padding: 10px;
  margin-bottom: 10px;
   background-image: url("https://i.pinimg.com/736x/99/6a/3f/996a3faa5283daa52d2ebce27d5687db.jpg");
   background-size:cover;
   height:auto;
    overflow: hidden;
    font-family: "Meddon",cursive;
    font-weight: bold;
}

.box:hover {
  transform: scale(1.02);
}

/* BIG BOX */
.big {
  height: 200px;
}

.welcome-sign {
  width:300px;
  height:auto;
  display:block;
  margin:0 auto;
}

.chocolate-divider {
  width:160px;
  height:auto;
}


.ipod {
  width: 100%;
  max-width: 160px;
  margin: 10px auto;
  padding: 8px;
  box-sizing: border-box;
  background: #f2f2f2;
  border: 2px solid #bbb;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  font-family: Arial, sans-serif;
  overflow:hidden;
}

.ipod-screen {
  background: black;
  color: white;
  border-radius: 10px;
  padding: 8px;
  overflow:hidden;
  margin-bottom: 10px;
   width: 100%;
  max-width: 140px;
  box-sizing:border-box;
}

audio {
  width: 100%;
  display: block;
  margin: 0 auto;
  box-sizing: border-box;
}

.now {
  font-size: 11px;
  opacity: 0.7;
}

#title {
  font-size: 13px;
  font-weight: bold;
  margin-top: 4px;
}

controls {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.controls button {
  background: white;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 5px 8px;
  cursor: pointer;
}

.album-art {
  text-align: center;
  margin-bottom: 6px;
}

.album-art img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.title {
  font-size: 12px;
  font-weight: bold;
   
}


/* TITLES */
.box h3 {
  color: black;
  padding: 5px;
  margin: -10px -10px 10px -10px;
  font-size: 16px;
   font-family:"Meddon",cursive;
}