#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  animation: fadeInOut 4s ease-in-out forwards;
  text-align: center;
}

.splash-content h1 {
  font-size: 2em;
  margin-bottom: 1em;
}

@keyframes fadeInOut {
  0% { opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}





body {
  font-family: 'Tempus Sans ITC', sans-serif; 
  margin: 0;
  background: #111;
  color: #eee;
}

nav {
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: #222;
}

nav h1 {
  font-size: 1.5rem;
  color: #fff;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}


nav {
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: #222;
}

nav h1 {
  font-size: 1.5rem;
  color: #fff;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

nav a {
  color: #ccc;
  text-decoration: none;
}

.spotify-overlay {
  position: absolute;
  bottom: 20px;         /* Pushes it to the bottom */
  left: 0;              /* Aligns it to the left edge */
  width: 35%;           /* Makes it nearly full width (adjust as needed) */
  transform: none;      /* Removes centering */
  z-index: 2;
}


.hero {
  text-align: center;
  padding: 4rem 2rem;
  background: url('your-hero-image.jpg') center/cover no-repeat;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #e63946;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

section {
  padding: 3rem 2rem;
}

.music-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, textarea {
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
}

button {
  padding: 0.75rem;
  background: #e63946;
  color: #fff;
  border: none;
  border-radius: 5px;
}

footer {
  text-align: center;
  padding: 2rem;
  background: #222;
}

.socials a {
  margin: 0 1rem;
  color: #ccc;
  text-decoration: none;
}

#apDiv1 #menu center ul a {
	font-family: Tempus Sans ITC;
	font-size:25px
	font-weight: bold;
	font-style: italic;
	 
}

}


