body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(to right, #F86C2F, #EC298D, #C73CBB);
    text-align: center;
}

.gradient-background {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px; /* Increased radius for more rounded edges */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 500px; /* Set a maximum width */
    margin: auto;
}

h1 {
    color: #fff;
    font-size: 2.5em;
    margin-bottom: 10px;
}

p {
    color: #FFF;
    font-size: 1.2em;
    margin-bottom: 20px;
}

.phone-image img {
    width: 256px; /* Fixed width */
    height: 256px; /* Fixed height */
    border-radius: 15px; /* Slightly rounded corners for the image */

}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 40px 40px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1em;
    transition: background 0.3s;
    border: 3px solid #fff; /* Added thick white stroke */
}

.app-store {
    background-color: #007aff;
}

.google-play {
    background-color: #34a853;
}

.btn:hover {
    opacity: 0.9;
}

.btn i {
    margin-right: 10px;
}
