/* page background + text */
body {
  background-image: url("https://djgragrabn.neocities.org/153-1538285_tomoko-wallpaper-cartoon.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #eaeaea;
  font-family: Arial, Helvetica, sans-serif;
  padding: 20px;
}

/* FIRE TEXT */
.fire-text {
  font-size: 48px;
  font-weight: bold;
  color: #ff6a00;
  text-shadow:
    0 0 5px #ff6a00,
    0 0 15px #ff0000,
    0 0 30px #ffae00;
}

/* SoundCloud button */
.sc-button img {
  width: 220px;          /* controls size */
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 120, 0, 0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* hover effect */
.sc-button img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 140, 0, 0.9);
}