* {
    margin: 0;
    padding: 0;
    font-family: Montserrat, sans-serif;
    font-weight: 600;
}

body {
    background-color: black;
    min-height: 140vh;
    display: flex;
    flex-direction: column;
    position: relative; /* Add this to position the sticky element within the body */}


.content {
    display: flex;
    flex-direction: column;
    text-align: center;
    flex-grow: 1; /* Allow the content to grow and take available space */
}





.logo {
    /*border: 2px solid blue;*/
}

.logo a {
    /*border: 2px solid orange;*/
    display: inline-block;
    text-decoration: none;
    width: 11rem;
    height: 11rem;
    border-radius: 50%;
    transition: 0.3s;
}
.logo a:hover {
    transform: scale(1.05);
}

.logo a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}





.about {
    /*border: 1px solid salmon;*/
}

.about p {
    color: white;
    font-weight: 400;
    font-family: Montserrat, sans-serif;
    font-size: 14pt;
}




.social {
    /*border: 2px solid red;*/
}

.social a {
    border: 2px solid rgba(0, 0, 0, 0);
    display: inline-block;
    text-decoration: none;
    width: 4rem;
    height: 4rem;
    margin: 0.5rem;
    border-radius: 50%;
    transition: 0.3s;
    /*
    -webkit-box-shadow:0px 0px 10px 5px rgba(255,255,255,0.4);
    -moz-box-shadow: 0px 0px 10px 5px rgba(255,255,255,0.4);
    box-shadow: 0px 0px 10px 5px rgba(255,255,255,0.4);
    */
}

.social a:hover {
    transform: scale(1.35);
}

.social a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}




.shop {
    /*border: 2px solid green;*/
}

.shop a {
    /*border: 1px solid rgb(255, 255, 255);*/
    background-color: white;
    text-decoration: none;
    display: inline-block;
    width: 60%;
    padding: 3rem 0;
    border-radius: 20px;
    transition: 0.3s;
    margin: 3rem 0 0;

    -webkit-box-shadow:0px 0px 120px 5px rgba(255,255,255,0.9);
    -moz-box-shadow: 0px 0px 120px 5px rgba(255,255,255,0.9);
    box-shadow: 0px 0px 120px 5px rgba(255,255,255,0.9);
}
.shop a:hover {
    transform: scale(1.05);
}

.shop a p {
    /*border: 1px solid pink; */
    color: black;
    font-size: 14pt;
}




.buttons {
    /*border: 2px solid rgb(251, 0, 255);*/
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.buttonWrapper {
    /*border: 2px solid rgb(208, 255, 0);*/
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 60%;
    transition: 0.3s;
}

.columnLeft {
    /*border: 2px solid red;*/
    width: 50%;
    margin-right: 1rem;
}

.columnRight {
    /*border: 2px solid red;*/
    width: 50%;
    margin-left: 1rem;
}

.buttonWrapper a {
    border: 2px solid rgb(255, 255, 255);
    margin-top: 2rem;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    padding: 0.8rem 0;
    border-radius: 15px;
    transition: 0.3s;
}
.buttonWrapper a:hover {
    transform: scale(1.05);
}

.buttons a p {
    color: white;
    vertical-align: middle;
    line-height: 80px;
}




.aboutNEW {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.aboutContent {
    border: 2px solid rgb(255, 255, 255);
    border-radius: 20px;
    margin: 4rem 0 0;
    width: 60%;
}

.aboutContent h3 {
    font-size: 18pt;
    font-weight: 800;
    color: white;
}

.aboutContent p {
    font-size: 14pt;
    color: white;
}




.stickyWrapper {
    /*border: 1px solid blue;*/
    position: sticky;
    bottom: 0; /* Stick to the bottom of the parent container */
    margin-top: auto; /* Push the stickyWrapper to the bottom of the flex container */
    width: 100%; /* Ensure it takes full width */
    text-align: center; /* Center the content */
    padding-bottom: 2rem;
}

.stickyWrapper a {
    z-index: 1000; /* Ensure it is above other content */
}

.stickyWrapper img {
    width: 2rem; /* Adjust size as needed */
    height: 2rem; /* Adjust size as needed */
    -webkit-filter: drop-shadow(0px 0px 5px #232323);
    filter: drop-shadow(0px 0px 5px #232323);
}




footer{
    /*border: 2px solid pink;*/
    margin-top: auto;
}

.footerContent {
    display: flex;
    justify-content: center;
}

.imprintLink {
    /*border: 2px solid purple;*/
    text-decoration: none;
    color: white;
    border-bottom: 1px solid black;
    transition: 0.3s;
    margin: 3rem;
}
.imprintLink:hover {
    border-bottom: 1px solid white;
}

.footerContent p {
    color: white;
}

.copyright {
    display: flex;
    justify-content: space-between;
    color: white;
    margin: 2rem;
}

.copyright p {
    font-size: 12pt;
    font-weight: 300;
}





/* IMPRINT.HTML ONLYS */

.imprintWrapper {
    /*border: 2px solid red;*/
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 0 0 5rem;
}

.imprintWrapper h1 {
    font-size: 25pt;
    color: white;
    text-decoration: line-through;
    margin: 2rem 0 3rem;
}

.imprintTextWrapper {
    display: flex;
    justify-content: center;
}

.imprintWhiteBox {
    background-color: white;
    border: 1px solid white;
    border-radius: 20px;
    width: 60%;
    text-align: left;
    padding: 1rem;
}

.imprintTextWrapper p {
    color: rgb(0, 0, 0);
}

.imprintTextWrapper h2 {
    color: rgb(0, 0, 0);
    margin: 0 0 0.5rem;
}





/* DOWNLOAD.HTML ONLYS */

.DL {
    /* border: 2px solid red; */
}

.DL h1 {
    font-size: 25pt;
    color: white;
    text-decoration: none;
    margin: 2rem 0 3rem;
}

.DL a {
    /* border: 1px solid rgb(255, 255, 255); */
    background-color: rgb(99, 255, 107);
    text-decoration: none;
    display: inline-block;
    width: 60%;
    padding: 3rem 0;
    border-radius: 20px;
    transition: 0.3s;
    margin: 3rem 0 0;

    -webkit-box-shadow:0px 0px 120px 5px rgb(99, 255, 107);
    -moz-box-shadow: 0px 0px 120px 5px rgb(99, 255, 107);
    box-shadow: 0px 0px 120px 5px rgb(99, 255, 107);
}

.DL a:hover {
    transform: scale(1.05);
}

.DL a p {
    /*border: 1px solid pink; */
    color: rgb(0, 0, 0);
    font-size: 14pt;
}






/* MEDIA QUERIES */

@media (max-width: 1160px) {
    .buttonWrapper {
        width: 80%;
    }
    .logo a {
        width: 22rem;
        height: 22rem;
    }
    .about p {
        font-size: 18pt;
    }
    .social a {
        width: 7rem;
        height: 7rem;
        margin: 0 1.5rem 2rem;
    }
    .shop a {
        width: 85%;
        padding: 5rem 0;
        border-radius: 40px;
        margin: 3rem 0 0;

        -webkit-box-shadow:0px 0px 120px 5px rgba(255,255,255,0.9);
        -moz-box-shadow: 0px 0px 120px 5px rgba(255,255,255,0.9);
        box-shadow: 0px 0px 120px 5px rgba(255,255,255,0.9);
    }
    .shop a p {
        font-size: 26pt;
    }
    .stickyWrapper img {
        width: 3rem;
        height: 3rem; 
    }
    .imprintLink {
        font-size: 20pt;
    }
    .copyright p {
        font-size: 16pt;
    }

    /*IMPRINT ONLY*/
    .imprintWrapper h1 {
        font-size: 40pt;
    }
    .imprintWhiteBox {
        border-radius: 40px;
        width: 80%;
        padding: 1.5rem;
    }
    .imprintTextWrapper h2 {
        font-size: 16pt;
    }    
    .imprintTextWrapper p {
        font-size: 10pt;
    }    

    /*DOWNLOAD ONLY*/
    .DL h1 {
        font-size: 40pt;
    }
    .DL a {
        width: 85%;
        padding: 5rem 0;
        border-radius: 40px;
        margin: 3rem 0 0;

        -webkit-box-shadow:0px 0px 120px 5px rgb(99, 255, 107);
        -moz-box-shadow: 0px 0px 120px 5px rgb(99, 255, 107);
        box-shadow: 0px 0px 120px 5px rgb(99, 255, 107);
    }
}

@media (max-width: 800px) {
    .logo a {
        width: 16rem;
        height: 16rem;
    }
    .social a {
        width: 5rem;
        height: 5rem;
        margin: 0 1.5rem 2rem;
    }
    .shop a {
        width: 80%;
        padding: 3.5rem 0;
        border-radius: 30px;
        margin: 3rem 0 0;

        -webkit-box-shadow:0px 0px 120px 5px rgba(255,255,255,0.9);
        -moz-box-shadow: 0px 0px 120px 5px rgba(255,255,255,0.9);
        box-shadow: 0px 0px 120px 5px rgba(255,255,255,0.9);
    }
    .shop a p {
        font-size: 20pt;
    }
}

@media (max-width: 600px) {
    .logo a {
        width: 12rem;
        height: 12rem;
    }
    .social a {
        width: 5rem;
        height: 5rem;
        margin: 0 0.5rem 1rem;
    }
    .shop a {
        width: 80%;
        padding: 3.5rem 0;
        border-radius: 30px;
        margin: 3rem 0 0;

        -webkit-box-shadow:0px 0px 120px 5px rgba(255,255,255,0.9);
        -moz-box-shadow: 0px 0px 120px 5px rgba(255,255,255,0.9);
        box-shadow: 0px 0px 120px 5px rgba(255,255,255,0.9);
    }
    .shop a p {
        font-size: 16pt;
    }
}