.navigation {
    list-style-type: none;
    display: flex;
    gap: 20px;

}


.player {
    border: 2px rgb(128, 128, 128) solid;
    border-radius: 10px;
    max-width: 100%;
    max-height: 100%;
    background-color: rgba(66, 0, 66, 0.769);
    justify-content: center;
    padding: 20px;
}

.centercontent {
    border: 2px gray solid;
    border-radius: 60px;
    max-width: 100%;
    max-height: 100%;
    background-color: #ffffff42;
    justify-content: center;
    padding: 20px;
}

.centercontentaltpage {
    border-radius: 60px;
    max-width: 100%;
    max-height: 100%;
    background-color: rgba(255, 255, 255, .75);
    justify-content: center;
    padding: 20px;
}

.centercontentnegativepage {
    border-radius: 60px;
    max-width: 100%;
    max-height: 100%;
    background-color: rgb(0, 0, .35);
    justify-content: center;
    padding: 20px;
}


.nav-style {
    list-style: none;
}

.nav-button {
    border: 2px rgb(255, 255, 255) solid;
    border-radius: 10px;
    background-color: #00000042;
    padding: 5px;
    padding: 5px;
    display: flex;
    gap: 2px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: larger;
}

.flex-hompage {
    flex-direction: column;
}

.welcometext {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.welcometextwhite {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: rgb(24, 20, 255);
}

.welcometextpurp {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: purple;
}

.thanks {
    list-style: square;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-style: italic;
    font-size: small;
    color: white;
}

.livestream {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-style: italic;
    color: red;
    text-align: right;
}

.centertext {
    font-size: larger;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    padding: 10px;
    text-align: center;
}

.form {
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    max-width: 800px;
    border-collapse: collapse;
    background-color: rgba(255, 255, 255, 0.545);
    border-radius: 10px;
}

.form th,
.form td {
    padding: 10px;
    border: 1px solid #0000007f;
    border-radius: 5px;

}

.form th {
    background-color: #ffffff7f;
    color: rgb(0, 0, 0);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.gallery-box img {
    width: 100%;
    object-fit: cover;
    display: flex;
}




a:link {
    color: hsl(0, 0%, 100%);
    font-style: oblique;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}

a:hover {
    color: rgb(225, 255, 0);
    text-decoration: solid;
}




@media screen and (max-width: 1023px) {
    body {
        background-image: url('images/mobilebackground.jpg');
    }

    header {
        content: url(images/mobileheader.jpeg);
        width: 35%;
        object-fit: contain;
        margin: 0 auto;
        border-radius: 30px;
        padding: 10px;
        filter: drop-shadow(2px 0px 0 #4C4646) drop-shadow(0px 2px 0 rgb(0, 0, 0)) drop-shadow(-2px 0px 0 #3C4142) drop-shadow(0px -2px 0 rgb(0, 0, 0));
    }


    .wrapper {
        padding: 50px;
        width: 75%;
        margin-left: auto;
        margin-right: auto;
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.739), #00000040);
        box-shadow: rgba(203, 0, 245, 0.17) 0px -23px 25px 0px inset,
            rgba(203, 0, 245, 0.15) 0px -36px 30px 0px inset,
            rgba(203, 0, 245, 0.1) 0px -79px 40px 0px inset, rgba(203, 0, 245, 0.06) 0px 2px 1px,
            rgba(203, 0, 245, 0.09) 0px 4px 2px,
            rgba(203, 0, 245, 0.09) 0px 8px 4px, rgba(203, 0, 245, 0.09) 0px 16px 8px,
            rgba(203, 0, 245, 0.09) 0px 32px 16px;
        border-radius: 30px;
    }

    footer {
        background-color: purple;
        text-align: center;
        width: 100%;
        margin-top: 50px;
        color: white;
        padding: 25px;
        margin-left: -10px;
        float: left;
    }
}

@media screen and (min-width: 1024px) {
    body {
        background-image: url('images/desktopbackground.jpg');
    }


    .flex-columns {
        display: flex;
        flex-direction: row;
    }


    .wrapper {
        padding: 50px;
        width: 70%;
        margin-left: auto;
        margin-right: auto;
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.739), #00000040);
        box-shadow: rgba(203, 0, 245, 0.17) 0px -23px 25px 0px inset,
            rgba(203, 0, 245, 0.15) 0px -36px 30px 0px inset,
            rgba(203, 0, 245, 0.1) 0px -79px 40px 0px inset, rgba(203, 0, 245, 0.06) 0px 2px 1px,
            rgba(203, 0, 245, 0.09) 0px 4px 2px,
            rgba(203, 0, 245, 0.09) 0px 8px 4px, rgba(203, 0, 245, 0.09) 0px 16px 8px,
            rgba(203, 0, 245, 0.09) 0px 32px 16px;
        border-radius: 30px;
        border-radius: 30px;
        gap: 30px;
    }

    header {
        content: url(images/desktopheader.jpeg);
        width: 40%;
        object-fit: contain;
        margin: 0 auto;
        border-radius: 30px;
        padding: 10px;
        filter: drop-shadow(2px 0px 0 #6a6262) drop-shadow(0px 2px 0 rgb(58, 56, 56)) drop-shadow(-2px 0px 0 #505455) drop-shadow(0px -2px 0 rgb(40, 40, 40));
    }

    footer {
        background-color: purple;
        text-align: center;
        width: 100%;
        margin-top: 50px;
        color: white;
        padding: 25px;
        margin-left: -10px;
        float: left;
    }
}