body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #111;
    color: white;
    line-height: 1.6;
}

header {
    background: linear-gradient(to right, #6a00ff, #ff008c);
    padding: 2rem;
    text-align: center;
    position: relative;
    padding: 0;
    background: none;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
}

.header-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 90%;
    max-width: 90%;

    background-color: rgba(0, 0, 0, 0.6);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
}

.header-text h1 {
    margin: 0;
    font-size: 2rem;
}

.header-text p {
    margin: 0.5rem 0 0 0;
}

nav {
    background-color: #222;
    text-align: center;
    padding: 0.8rem;
}

nav a {
    display: block;
    color: white;
    text-decoration: none;
    margin: 0.5rem 0;
    font-weight: bold;
}

nav a:hover{
    color: #ff008c;
}

section {
    padding: 1.5rem;
    max-width: 100%;
}

h2 {
    color: #ff008c;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.audio-section {
    text-align: center;
    margin-top: 1.5rem;
}

.event-info {
    background-color: #1a1a1a;
    padding: 1.2rem;
    border-left: 5px solid #ff008c;
    margin-top: 1.5rem;
}

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

footer iframe {
    width: 100%;
    height: 250px;
    border: 0;
    margin-top: 1rem;
}

.credit {
    margin-top: 1rem;
    font-size: 0.9rem;
}

@media (min-width: 48rem) {

    nav a {
        display: inline-block;
        margin: 0 1rem;
    }

    .header-text {
        width: 70%;
        padding: 1.5rem;
    }

    .header-text h1 {
        font-size: 2.5rem;
    }

    .header-text p {
        font-size: 1.1rem;
    }

    section {
        max-width: 90%;
        margin: auto;
    }

    footer iframe {
        height: 300px;
    }
}

@media (min-width: 60rem) {

    section {
        max-width: 60rem;
    }

    .video-wrapper {
        max-width: 50rem;
    }

    .header-text {
        width: 60%;
        padding: 2rem;
    }

    .header-text h1 {
        font-size: 3rem;
    }

    .header-text p {
        font-size: 1.2rem;
    }
}

@media (min-width: 80rem) {

    body {
        font-size: 1.1rem;
    }

    section {
        max-width: 70rem;
    }

    .header-text {
        width: 50%;
        padding: 2.5rem;
    }

    .header-text h1 {
        font-size: 3.5rem;
    }

    .header-text p {
        font-size: 1.3rem;
    }

    footer iframe {
        height: 350px;
    }
}