header {
    background-color: orange;
    /* position: sticky;
    top: 0; */
    display: flex;
    flex-direction: column;
}

h1 {
    font-size: 3rem;
    font-family: Arial, Helvetica, sans-serif;
    color: cornflowerblue;
    text-align: center;
}

h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
    font-family: Arial, Helvetica, sans-serif;
    color: cornflowerblue;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}

.firstbg p,
.secondbg p,
.thirdbg p,
.fourthbg p,
.fifthbg p {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 1.5rem;
    color: rgb(255, 255, 255);
    text-align: center;

}


.headermenu {
    display: flex;
    flex-wrap: wrap;

}

.headermenu li {
    width: 50%;
    list-style-type: none;
    font-size: 32px;
    font-family: 'Lato', sans-serif;
}

a {
    text-decoration: none;
}

.firstbg {
    background-image: url(../images/musicfestivalbg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: white;
}

.secondbg {

    background-image: url(../images/musicfestival6.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: white;
    padding-bottom: 2rem;
}

.thirdbg {
    background-image: url(../images/musicfestival4.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: white;
    padding-bottom: 2rem;
}

.fourthbg {
    background-image: url(../images/musicfestival2.webp);
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    background-attachment: fixed;
}

.fifthbg {
    background-image: url(../images/musicfestival5.webp);
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    background-attachment: fixed;

}

.fifthbg h2{
    margin-top: 2rem;
}

.firstbg .innercont {
    min-height: calc(100vh - 11rem);
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    padding-bottom: 1rem;

}

.textbox2 {
    background: rgba(0, 0, 0, 0.5)
}

.textbox {
    background: rgba(0, 0, 0, 0.5);
    max-width: 60%;
}

.imghalf {
    padding: 1rem;
}

.secondbg .innercont {
    display: flex;
    flex-flow: column nowrap;
    min-height: calc(100vh - 22rem);
    justify-content: center;
    align-items: center;
    padding-bottom: 1rem;
}


.secondbg section {
    background-color: black;
    margin: 1rem 1rem 2rem 1rem;
    padding: 1rem;
    flex: 0 0 24rem;
}

.scroll-container {
    display: flex;
    overflow: scroll;
}

.scroll-container::-webkit-scrollbar {
    height: 0.2rem;
}

.scroll-container::-webkit-scrollbar-track {
    background-color: none;
    border-radius: 0.5rem;
}

.scroll-container::-webkit-scrollbar-thumb {
    border: none;
    background-color: white;
    border-radius: 0.5rem;
}


.thirdbg .innercont {
    display: flex;
    flex-flow: column nowrap;
    min-height: calc(100vh - 22rem);
    justify-content: center;
    align-items: center;
    padding-bottom: 1rem;
}

.thirdbg section {
    background-color: black;
    margin: 1rem 1rem 2rem 1rem;
    padding: 1rem;
    flex: 0 0 24rem;
}

.fourthbg .innercont {
    min-height: calc(100vh - 22rem);
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    padding-bottom: 1rem;
}

.fifthbg .innercont{
    min-height: calc(100vh - 22rem);
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    padding-bottom: 1rem;
}

.innercont {
    padding: 0 1rem;
}

.banner {

    display: flex;
    justify-content: space-around;
}

.btn {
    background-color: white;
    margin-top: 1rem;
    padding: 1rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    color: black;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 1.5rem;
}

.btn:hover {
    background-color: greenyellow;
}

footer {
    background-color: gray;

}

/* -- Code for the Cookie Compliance popover window -- */
#cookiePopup {
    background-color: #ffffff;
    position: fixed;
    left: 5%;
    bottom: 0;
    font-size: 14px;
    width: 90%;
    box-shadow: 0 0 2em rgba(5, 0, 31, 0.72);
    font-family: "Poppins", sans-serif;
    text-align: justify;
    line-height: 1.8em;
    margin: 0 auto;
    padding: 2em 1.4em;
    border-radius: 6px;
    transition: all 0.5s ease-in-out;
}

#cookiePopup p {
    text-align: center;
    margin: 1.4em 0;
}

#cookiePopup button {
    background-color: #3f704d;
    border: none;
    color: #ffffff;
    font-size: 1.2em;
    padding: 1em 1.4em;
    display: block;
    position: relative;
    margin: auto;
    border-radius: 5px;
}

#cookiePopup a {
    color: #3f704d;
}

.hide {
    visibility: hidden;
}

.show {
    visibility: visible;
}

/* -- End of Code for the Cookie Compliance popover window -- */

@media screen and (min-width: 700px) {

    .headermenu {
        flex-wrap: nowrap;
    }

    .firstbg {
        display: flex;
        align-items: center;
    }

    .firstbg .innercont {
        width: 100%;
    }

    .imghalf {
        width: 100%;
    }
}