body {
  background: #0f0f0f;
  color: #d3d3d3;
  font-family: "Courier New", Courier, monospace;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

em {
  color: #ff4500;
  text-shadow: 0 0 5px #ff4500, 0 0 10px #ff4500;
}

img {
  width: 400px;
  border-radius: 15px;
  float: left;
  margin-right: 10px;
  box-shadow: 0 0 20px #ff0080, 0 0 40px #ff0080;
}

.username {
  font-weight: bold;
  color: #00ffcc;
  text-shadow: 0 0 5px #00ffcc, 0 0 15px #00ffcc;
  font-size: 1.5rem;
  text-align: center;
  font-family: cursive;
}

header {
  margin-top: 20px;
  font-size: 1.2rem;
  text-align: left;
}

h1 {
  color: #00ffff;
  text-shadow: 0 0 5px #00ffff, 0 0 20px #00ffff;
  border-bottom: 2px solid #ff4500;
  padding-bottom: 10px;
  text-align: center;
}

h2 {
  color: #00ffff;
  text-shadow: 0 0 5px #00ffff, 0 0 20px #00ffff;
  border-bottom: 2px solid #ff4500;
  padding-bottom: 10px;
  text-align: center;
  font-family: cursive;
}

#company-name {
  color: #00ffff;
  text-shadow: 0 0 5px #ff0066, 0 0 20px #00ffff;
  padding-bottom: 10px;
  text-align: left;
  font-family: serif;
} 

p {
  font-size: 1rem;
  line-height: 1.5;
}

.footer {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  font-size: 0.8rem;
  opacity: 0.8;
  text-shadow: 0 0 5px #ffffff;
}

/* Boombox container */
.boombox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 70px auto;
  width: 500px;
  height: 350px;
  background: #1e1e1e;
  border: 5px solid #ff4500;
  border-radius: 20px;
  box-shadow: 0 0 20px #ff0080, 0 0 40px #ff0080;
  position: relative;
}

.boombox .gif-screen {
  width: 90%;
  height: 280px;
  margin-top: 10px;
  background: url('images/IMG_1031.GIF') center center no-repeat;
  background-size: cover;
  border: 3px solid #00ffcc;
  box-shadow: 0 0 10px #00ffcc;
  border-radius: 10px;
}

.boombox .controls {
  margin-top: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0 10px;
}

.garden-tab {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #00ffcc;
  color: #0f0f0f;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 0 10px #00ffcc, 0 0 20px #00ffcc;
  transition: transform 0.3s, background-color 0.3s;
}

.garden-tab:hover {
  transform: scale(1.1);
  background-color: #00ffdd;
}
/* Audio waveform container */
.waveform {
  width: 80%;
  height: 40px;
  margin: 20px auto;
  border-radius: 5px;
  background: #1e1e1e;
  box-shadow: 0 0 10px #ff0080;
}

/* Audio control buttons */
.audio-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60%;
  margin-top: 10px;
  gap: 20px;
}

.audio-controls button,
.audio-controls input[type="range"] {
  background-color: #ff4500;
  border: none;
  padding: 12px;
  border-radius: 5px;
  color: white;
  cursor: pointer;
  box-shadow: 0 0 10px #ff4500;
  transition: transform 0.3s;
  width: 100px;
}

.audio-controls button:hover,
.audio-controls input[type="range"]:hover {
  transform: scale(1.1);
  background-color: #ff6347;
}

.audio-controls input[type="range"] {
  width: 150px;
}

/* stars */
#starField {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; 
    z-index: -1; /
    overflow: hidden;
  }
  
  /* Style for each star */
  .star {
    position: absolute;
    width: 2px;
    height: 2px;
    background-color: #fff;
    border-radius: 50%;
    opacity: 0.8;
    animation: twinkle 1.5s infinite ease-in-out;
  }
  
  /* Twinkle animation */
  @keyframes twinkle {
    0% {
      opacity: 0.2;
      transform: scale(0.8);
    }
    50% {
      opacity: 1;
      transform: scale(1);
    }
    100% {
      opacity: 0.2;
      transform: scale(0.8);
    }
  }
  
 
  