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

.container {
    text-align: center;
    max-width: 600px;
    padding: 20px;
}

h1 {
    color: #333;
    margin-bottom: 10px;
}

.description {
    color: #666;
    margin-bottom: 30px;
}

.app-store-icon {
    height: 50px; /* Adjust this value as needed */
}

.logo {
    max-width: 300px; /* Adjust this value as needed */
    height: auto;
    margin-bottom: 20px;
}

.store-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

/* Adjust height for Play Store icon if needed */
.play-store-icon {
    height: 50px; /* Adjust this value as needed */
}

.store-icon:hover {
    transform: scale(1.05);
}
