body {
    position: relative;
    overflow-x: hidden;
    background: black;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Center the container vertically */
    min-height: 100vh;
}

.container {
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 800px;
    margin: 100px auto 50px;
}

.text-center {
    text-align: center;
}

.container .logo {
    max-width: 300px;
    margin-bottom: -25px;
}

.store-buttons {
    padding: 20px 0;
}

.store-buttons a {
    display: inline-block;
    margin: 0 10px;
}

.store-buttons img {
    height: 80px;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #1e1e1e;
    padding-left: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
}

header img {
    height: 80px;
    margin-right: 10px;
    cursor: pointer;
}

a {
    color: #bb86fc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.percentage {
    font-size: 1.2rem;
    color: #ff9800;
    text-align: center;
    margin-top: 20px;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px 0;
    font-size: 1rem;
    color: #ffffff;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}

.button:hover {
    background-color: #0056b3;
    text-decoration: none;
}

.footer, footer {
    background-color: #1e1e1e;
    padding: 30px 20px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.5);
}

footer a {
    color: #d3d3d3;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

h1 {
    text-align: center;
}

h1.big {
    font-size: 40px !important;
}

h2 {
    color: #d1d5db;
    border-bottom: 2px solid #d1d5db;
    padding-bottom: 5px;
}

p {
    line-height: 1.6;
    color: #e0e0e0;
    padding-bottom: 20px;
    margin: 0;
}

.background-image {
    position: absolute;
    height: 80%;
    width: auto;
    border-radius: 15px;
    z-index: -1;
}

.image1 {
    top: 5%;
    left: 20%;
    transform: rotate(-10deg);
}

.image2 {
    top: 5%;
    right: 20%;
    transform: rotate(10deg);
}

.image3 {
    top: 15%;
    left: 10%;
    transform: rotate(-15deg);
}

.image4 {
    top: 15%;
    right: 10%;
    transform: rotate(15deg);
}

/* Responsive adjustments */
@media (max-width: 1080px) {

body {
justify-content: start; }
.container {
margin-top: 20px;


}
    .background-image {
        height: 35%;
    }

    .image1 {
        top: 45%;
        left: 35%;
        transform: rotate(-10deg);
    }

    .image2 {
        top: 45%;
        right: 35%;
        transform: rotate(10deg);
    }

    .image3 {
        top: 50%;
        left: 25%;
        transform: rotate(-15deg);
    }

    .image4 {
        top:50%;
        right: 25%;
        transform: rotate(15deg);
    }
}



@media (max-width: 600px) {


    .image1 {

        left: 20%;
        transform: rotate(-10deg);
    }

    .image2 {

        right: 20%;
        transform: rotate(10deg);
    }

    .image3 {

        left: 10%;
        transform: rotate(-15deg);
    }

    .image4 {

        right: 10%;
        transform: rotate(15deg);
    }
}