@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

body {
    background: linear-gradient(to bottom, #082A31 50%, #000000 100%);
    margin: 0;
    padding: 0;
    height: 100vh;
    color: white;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
}

.content-wrapper {
    padding-top: 50px; /* Adjust this value as needed */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.app-logos {
    margin-top: 20px; /* Adjust this value as needed */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.app-logo {
    width: 450px; /* 3x the original size of 150px */
    margin-bottom: 20px; /* Adjust this value as needed */
    border-radius: 15px; /* Adjust this value as needed to round the edges */
}

.store-logos {
    display: flex;
    gap: 20px; /* Adjust this value as needed */
}

.store-logo {
    width: 120px; /* Keep the original size */
    border-radius: 5px; /* Adjust this value as needed to round the edges */
}

/* Media query for smaller screens */
@media (max-width: 600px) {
    .app-logo {
        width: 250px; /* Adjust this value as needed for smaller screens */
    }
}