/* styles/style.css */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #ffffff;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

header {
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem 0;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

nav a {
    color: #00ffe7;
    margin: 0 1rem;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
}

nav a:hover {
    text-decoration: underline;
}

.section {
    padding: 4rem 0;
    text-align: center;
}

.button {
    display: inline-block;
    margin-top: 1rem;
    background: #00ffe7;
    color: #000;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease-in-out;
}

.button:hover {
    background: #00bfa5;
}

footer {
    background: rgba(0, 0, 0, 0.6);
    padding: 1rem 0;
    text-align: center;
    font-size: 0.9rem;
}

.music-embeds {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
