html {
    height: 100%;
    min-height: 100%;
}

body {
    font-family: sans-serif;
    margin: 0 auto;
    background-color: #36e0c7;
    color: black;
    max-width: 100%;
    min-height: 100%;
}

header {
    padding: 20px;
    text-align: center;
    z-index: -10;
}

main {
    padding: 20px;
}

section {
    margin-bottom: 20px;
}

#logo {
    display: block;
    margin: 0 auto;
    width: 80%;
    height: auto;
    margin-bottom: 40px;
    z-index: 3;
}

.header-spliter {
    height:5px;
    border-width:0;
    width: 94%;
    background-color:gray;
    z-index: 3;
}

.merch-spliter {
    height:3px;
    border-width:0;
    width: 94%;
    background-color:gray;
    z-index: 3;
}

.sponsor-spliter {
    height:3px;
    border-width:0;
    width: 94%;
    background-color:gray;
    z-index: 3;
}

.donation-spliter {
    height:3px;
    border-width:0;
    width: 94%;
    background-color:gray;
    z-index: 3;
}

.spotify-spliter {
    height:3px;
    border-width:0;
    width: 94%;
    background-color:gray;
    z-index: 3;
}

.social-links {
    font-family: 'Brush Script MT', cursive;
    font-weight: 900;
    font-size: 48px;
    text-align: center;
    margin-bottom: 70px;
    z-index: 3;
}

.social-links a {
    display: inline-block;
    margin: 0 10px;
}

.social-links img {
    width: 100px;
    height: auto;
    border-radius: 25px;
}

.sponsor_links {
    font-family: 'Brush Script MT', cursive;
    font-weight: 900;
    font-size: 48px;
    text-align: center;
    margin-bottom: 70px;
    z-index: 3;
}

.sponsor_links a {
    display: inline-block;
    margin: 0 10px;
}

.sponsor_links img {
    width: 200px;
    height: auto;
    border-radius: 10px;
}

.donation-links {
    font-family: 'Brush Script MT', cursive;
    font-weight: 900;
    font-size: 48px;
    text-align: center;
    margin-bottom: 70px;
    z-index: 3;
}

.donation-links a {
    display: inline-block;
    margin: 0 10px;
}

.donation-links img {
    width: 100px;
    height: auto;
    border-radius: 25px;
}

.merch-links {
    font-family: 'Brush Script MT', cursive;
    font-weight: 900;
    font-size: 48px;
    text-align: center;
    margin-bottom: 0px;
    z-index: 3;
}

.merch-links a {
    display: block;
    margin: 10px 0;
    margin-bottom: 0px;
}

.merch-links img {
    width: 200px;
    height: auto;
    border-radius: 50px;
}

.merch-links a:first-child {
    margin-top: 0px; /* Adjust the value as needed */
    margin-bottom: 40px;
}

.social-link, .merch-link, .donation-link {
    position: relative; /* Allow positioning of child elements */
    display: inline-block; /* Or display: block; if you want them stacked */
    margin: 10px;
}

.link-text {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    color: black;
    font-weight: bold; /* Example styling */
    font-size: 16px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
}

.spotify {
    font-family: 'Brush Script MT', cursive;
    font-weight: 900;
    font-size: 48px;
    padding: 10px;
    margin-bottom: 20px;
    z-index: 3;
}

#background-image {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20vh;
    z-index: -1;
    max-width: 94%;
    object-fit: cover;
    opacity: 0.5;
}


#topper-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20vh;
    z-index: -1;
    max-width: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    bottom: 0;
    margin: 0,auto;
    position: static;
    width: 94%;
    z-index: 15;
}

/* Styles for larger screens (adjust the breakpoint as needed) */
@media (min-width: 768px) {
    body {
        width: 99%; /* Larger width for desktop */
        min-height: calc(100vh - 0px);
    }

    .spotify {
        margin-bottom: 60px;
   }

    #background-image {
        height: 40vh;  /* Increase the height on larger screens */
        object-fit: scale-down; /* Use scale-down */
        background-repeat: repeat-x;
        background-size: auto 100%;
    }

    .merch-links img {
         width: 500px; /* Larger width for desktop */
        margin-bottom: 60px;
    }

    .sponsor_links img {
         width: 500px; /* Larger width for desktop */
        margin-bottom: 60px;
    }

    .footer {
        width: 99%; /* Larger width for desktop */
        position: fixed;
        margin: 0 auto;
        bottom: 0px;
        left: 0;
    }

    .link-text {
        position: absolute;
        top: 70%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
        color: black;
        font-weight: bold; /* Example styling */
        font-size: 36px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        padding: 15px;
        background-color: rgba(255, 255, 255, 0.95);
        border-radius: 15px;
    }
}
