body {
    margin: 0;
    font-family: 'Orbitron', sans-serif;
    background-color: black;
    color: #ffffff;
}

header {
    background-color: #1d0b1c;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    gap: 30px;
}

header img{
    height: 100px;
    width: 100px;
}
nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav a, .logo {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
}

.container {
    padding: 50px 80px;
}

.intro h1 {
    font-size: 48px;
    margin-bottom: 30px;
}

.content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 80px;
}

.about {
    flex: 1;
    background-color: #0b0b0b;
    padding: 40px;
    min-height: 420px;
}

.about h2 {
    margin-top: 0;
    color: #ffffff;
    font-size: 24px;
}

.about p {
    font-size: 16px;
    color: #ffffff;
}

.about img {
    background-color: #1d0b1c;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder p {
    color: #ffffff;
    font-size: 20px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-bottom: 100px;
}

.buttons button {
    background-color: #1d0b1c;
    color: #ffffff;
    border: none;
    padding: 15px 25px;
    font-size: 16px;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
}

.buttons button:hover {
    background-color: #3a1a38;
    transform: scale(1.05);
}

.audio-control {
    text-align: center;
    margin-top: auto;
}

.songsContainer {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.songExample {
    background-color: #0b0b0b;
    border-radius: 5px;
    padding: 20px 25px;
    margin-bottom: 35px;
    color: white;
    width: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    min-height: 400px;
}


.play-button {
    background-color: #1d0b1c;
    color: #ffffff;
    border: none;
    padding: 20px 40px;
    font-size: 18px;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    transition: all 0.2s ease-in-out;
}

.play-button:hover {
    background-color: #3a1a38;
    transform: scale(1.05);
}

footer {
    background-color: #1d0b1c;
    color: #ffffff;
    text-align: center;
    padding: 15px 0;
    font-size: 18px;
}

