body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: "Press Start 2P", system-ui;
    font-weight: 400;
    font-style: normal;
}

.centered-image {
    display: block;
    margin: 0 auto; /* This will center the image horizontally */
    width: 434px;
}

.press-start-2p-regular {
    font-family: "Press Start 2P", system-ui;
    font-weight: 400;
    font-style: normal;
}

.wrapper {
    min-height: 100%;
    position: relative;
    /*background-color: #d6edf7; !* light blue *!*/
    background: linear-gradient(#dceef8, #b1def7); /* Fading from light blue to a lighter shade */
    z-index: 0;


    display: flex;
    flex-direction: column;
    /*justify-content: center;*/
    align-items: center;
    padding: 80px 20px; /* Adjust the margin as needed */
    box-sizing: border-box;
}

.wrapper p {
    margin-left: 20%; /* Adjust the left margin as needed */
    margin-right: 20%; /* Adjust the right margin as needed */
    font-size: 12px; /* Adjust the font size as needed */
    line-height: 1.5; /* Adjust the line height as needed */
}

/* Media query for smaller screens */
@media only screen and (max-width: 768px) {
    .wrapper p {
        margin-left: 10%; /* Adjust the left margin for smaller screens */
        margin-right: 10%; /* Adjust the right margin for smaller screens */
    }
}

@media only screen and (max-width: 516px) {
    .wrapper:before {
        bottom: 46px !important;
    }
}

.wrapper:before {
    content: "";
    background-image: url('ground.png');
    background-repeat: repeat-x;
    background-position: center bottom;
    background-size: auto 100%;
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 300px; /* Adjust the height as needed */
    z-index: -1; /* Ensure it stays behind the content */
}


/*footer {*/
/*    position: fixed;*/
/*    left: 0;*/
/*    bottom: 0;*/
/*    width: 100%;*/
/*    background-color: transparent;*/
/*    text-align: center;*/
/*}*/

/*footer img {*/
/*    width: 100%;*/
/*}*/

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: white;
    text-align: center;
    z-index: 1; /* Ensure it stays above the background */
    font-family: system-ui;
}

footer img {
    width: 100px; /* Adjust the width of the logos as needed */
    /*margin: 0px; !* Adjust the margin between logos as needed *!*/
    margin: 0; /* Set margin to 0 */
    padding: 0; /* Set padding to 0 */
}


footer a {
    margin: 0; /* Set margin to 0 */
    padding: 0; /* Set padding to 0 */
}

.intro-text {
    color: #a21875;
}

.intro-text-2 {
    color: #a21875;
    font-size: 10px !important;
}

.default-text {
    color: #2e1b5b;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}
