@media all{

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #069;
  color: #000;
}

header {
  background: #1e1e1e;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
     font-family: 'Orbitron', sans-serif;
     color:#ffffff;
  font-size: 3rem;
  height: 50px;
}

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

nav a {
  color: #00FFF7;
  text-decoration: none;
  font-weight: bold;
}

.hero-content1{
    
width: 80%;
}

.hero {
  background-image: url('https://images.pexels.com/photos/1219113/pexels-photo-1219113.jpeg');
  background-size: cover;
  background-position: center;
  padding: 6rem 2rem;
  text-align: center;
}

.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  color: #FF2D95;
 -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #ffffff;
  text-shadow:
    3px 3px 2px #000,
    -3px 3px 2px #000,
    -3px -3px 0 #000,
    3px -3px 0 #000;
}

.hero p {
  font-size: 1.2rem;
  margin: 1rem 0;
}
.hero3 {
  font-size: 1.2rem;
  margin: 1rem 0;
}
.play-button {
  background-color: #00FFF7;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  color: #121212;
  border-radius: 30px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.now-playing, .top-hits, .schedule {
  padding: 3rem 2rem;
  background-color: #ffffff;
  margin-top: 2rem;
}

.now-info {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1rem;
}

.now-info img {
  height: 80px;
}

.top-hits ol {
  margin-top: 1rem;
  padding-left: 1.5rem;
}

.schedule ul {
  list-style: none;
  padding-left: 0;
}

.schedule li {
  margin-bottom: 0.5rem;
}

footer {
  text-align: center;
  padding: 2rem;
  background-color: #000;
  color: #aaa;
}
.contact-section {
  padding: 3rem 2rem;
  background-color: #1e1e1e;
}

.contact-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #00FFF7;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-weight: bold;
  color: #FF2D95;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  background-color: #2a2a2a;
  border: 1px solid #444;
  border-radius: 5px;
  color: #fff;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #00FFF7;
}

.contact-form button {
  background-color: #00FFF7;
  color: #121212;
  font-weight: bold;
  padding: 1rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background-color: #FF2D95;
  color: white;
}

}
@media all and (max-width: 801px){
    .logo {
     font-family: 'Orbitron', sans-serif;
  font-size: 30px;
  height: 50px;
}
}
