body {
    font-family: Arial, sans-serif;
    background-color: #333; /* Darker background */
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    color: #f4f4f9; /* Light text color for contrast */
}
h1 {
    color: #ff6600; /* Orange text for the heading */
    margin-bottom: 20px;
    font-size: 21px;
}
p {
    color: #ddd; /* Light gray text for the paragraph */
    font-size: 1.2em;
    margin-bottom: 30px;
}
.cta-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    padding: 15px 25px;
    font-size: 1.2em;
    text-decoration: none;
    border-radius: 8px;
    background-color: #ff6600; /* Orange */
    color: white;
    text-align: center;
    transition: 0.3s;
}
.cta-button:hover {
    opacity: 0.8;
}
.store-badge {
    width: 150px;
    height: auto;
    transition: 0.3s;
}
.store-badge:hover {
    opacity: 0.8;
}
 /* Media Query for mobile devices */
@media (max-width: 600px) {
    .store-badge {
        width: 250px;
        height: auto;
        transition: 0.3s;
        margin-top: 20px;
    }
    .cta-button {
        width: 200px;
        height: 40px;
        font-size: 1.1em;
    }
    .cta-button-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 200px;
        margin-top: 20px;
    }
}
.logo {
    background-color: black;
    max-width: 5rem;
    border-radius: 15%;
}
.text-container {
    padding: 1em;
    max-width: 600px;
}
.cta-button:hover, .logo:hover {
    opacity: 0.8;
}

