body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
   overflow: hidden; /* Disable scrolling for the entire page */
    color: white;
}

.container {
    position: relative;
    height: 100%;
    width: 100%;
    background-image: url('background.png'); /* Platformer background image */
    background-size: cover;
    background-position: center;
   
}

.background {
    position: relative;
    height: 100%;
}

.clouds {
    position: absolute;
    width: 100%;
    height: 33%; /* Set height to one-third of the screen */
    background: url('clouds.png') repeat-x; /* Cloud sprite */
    background-size: auto 100%; /* Scale the height to 100% of the container, maintain aspect ratio */
    animation: moveClouds 60s linear infinite;
    top: 0; /* Position at the top of the container */
}

@keyframes moveClouds {
    0% { background-position: 0 0; }
    100% { background-position: -2000px 0; } /* Adjust according to the width of the cloud image */
}

.mushroom {
    position: absolute;
    bottom: 20%;
    right: 0%;
    width: 250px;
    height: 250px;
    background: url('mushroom.png') no-repeat center center; /* Mushroom sprite */
    background-size: contain;
}

.eyes {
    position: absolute;
    top: 45%;
    left: 41%;
    width: 18%;
    height: 80%;
    display: flex;
    justify-content: space-between;
}

.eye {
    width: 40%;
    height: 100%;
    background: url('eye.png') no-repeat center center; /* Eye sprite */
    background-size: contain;
    animation: blink 5s infinite;
}

@keyframes blink {
    0%, 90%, 100% { opacity: 1; }
    95% { opacity: 0; }
}

.mouth {
    position: absolute;
    bottom: 0%;
    left: 47%;
    width: 5%;
    height: 21%;
    background: url('mouth.png') no-repeat center center; /* Mouth sprite */
    background-size: contain;
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
}

.content-wrapper {
    position: absolute;
    top: 5%;
    
    width: 100%;
    height: 90%; /* Adjust the height to control the visible area */
    overflow-y: auto; /* Enable vertical scrolling */
}

.content {
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}


.buttons {
     margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 10px; /* Add gap between buttons */
}

.button {
    display: inline-block;
    width: 150px; /* Set width for the button */
    height: 150px; /* Set height for the button */
    margin: 5px;
    background-size: contain; /* Ensure the image scales proportionally */
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    background-color: transparent; /* Ensure background color does not obscure image */
}

.playstore {
    
    background-image: url('androidDownload.png'); 
    
    
}
.logo {
    width: 100%; /* Adjust size as needed */
    max-width: 300px;
    margin: 0 auto 20px;
    filter: invert(100%) sepia(100%) saturate(100%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

.appstore {
    background-image: url('appleDownload.png');
}

.donate {
    background: #999;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    transition: background 0.3s ease;
    background-image: url('spenden.png'); 
    background-size: contain;
}
.email {
    background: #999;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    transition: background 0.3s ease;
    background-image: url('email.png'); 
    background-size: contain;
}

.button:hover {
    transform: scale(1.1);
}

.info h2 {
    font-size: 24px;
    margin: 20px 0 10px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.info p {
    font-size: 18px;
    margin: 10px 0;
}
