* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;

background-image: url("https://trunksgina4ever.neocities.org/images/background.png");
background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.site {
  width: 1000px;
  margin: 30px auto;
  background: #eeeeee;
}

.site-header {
  padding: 30px;
  text-align: center;
  border: 2px solid black;
}

.site-header h1 {
  margin: 0;
}

.top-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  border: 2px solid black;
}

.top-nav a {
  color: black;
}

.page-layout {
  display: grid;
  grid-template-columns: 190px 1fr 190px;
  gap: 10px;
  padding: 10px;
}


/* -------------------- */
/* BASIC BOX STYLE      */
/* -------------------- */

.box {
  margin-bottom: 10px;
  padding: 10px;

  border: 1px solid #7e93a8;
  background: #eef7f8;
}

.box h2 {
  margin-top: 0;
}


/* -------------------- */
/* WELCOME BOX          */
/* -------------------- */

.welcome-box {
  background: linear-gradient(
    to bottom,
    #eafcff,
    #cfeef2
  );

  border-radius: 12px;
}


/* -------------------- */
/* NOW PLAYING BOX      */
/* -------------------- */

.music-box {
  background: linear-gradient(
    to bottom,
    #bde6ef,
    #7db8d1
  );

  border-radius: 20px 6px 20px 6px;

  /* keeps the title bar inside the rounded shape */
  overflow: hidden;
}


/* title bar used inside special boxes */

.box-title {
  margin: -10px -10px 10px -10px;
  padding: 6px 10px;

  background: linear-gradient(
    to bottom,
    #9ce7f1,
    #4b9fc6
  );

  border-bottom: 1px solid #55778a;
}


/* -------------------- */
/* STATUS BOX           */
/* -------------------- */

.status-box {
  background: linear-gradient(
    to bottom,
    #edf0ff,
    #cad2ec
  );

  border-radius: 6px;
  border-left: 5px solid #446fa3;
}


/* -------------------- */
/* BIG ZERO             */
/* -------------------- */

.big-number {
  font-size: 50px;
  text-align: center;
  font-weight: bold;
}


/* -------------------- */
/* FOOTER               */
/* -------------------- */

.site-footer {
  width: fit-content;
  margin: 10px auto;
  padding: 6px 18px;

  text-align: center;

  background: white;
  border: 2px solid black;
}

.site-footer p {
  margin: 0;
}


/* -------------------- */
/* MOVING 88x31 BUTTONS */
/* -------------------- */

.button-marquee {
  overflow: hidden;
  width: 100%;
  padding: 6px;

  background: white;
  border: 2px solid black;
}

.button-track {
  display: flex;
  gap: 6px;
  width: max-content;

  animation: scroll-buttons 18s linear infinite;
}

.button-track img {
  width: 88px;
  height: 31px;
  flex-shrink: 0;
}

@keyframes scroll-buttons {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}