body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70vh;
    margin: 0;
    background-color: #f4f4f4;
}

.container {
    text-align: center;
}

h1 {
    color: #333;
}

.app-icon {
    width: 140px; /* Adjust the width as needed */
    height: 140px; /* Ensure height matches width for a perfect circle */
    border-radius: 50%; /* Makes the image round */
    margin-bottom: 20px; /* Space below the icon */
    object-fit: cover; /* Ensures image covers the area */
}

.button {
    display: inline-flex;
    align-items: center;
    padding: 15px 70px;
    margin-top: 20px;
    color: #fff;
    background-color: #3453f1; /* Blue color similar to Google Play Store */
    border: none;
    border-radius: 50px; /* Rounded edges */
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
}

.button:hover {
    background-color: #158c27; /* Darker blue on hover */
    transform: scale(1.05); /* Slightly increase size on hover */
}
p {
    font-size: 16px;
    color: #666;
    margin-top: 10px;
}