body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.container {
    text-align: center;
    background: orange;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #007BFF; /* Blue */
}

p {
    color: #006400; /* Green */
}

.store-links a {
    display: inline-block;
    margin: 10px;
    text-decoration: none;
}

.store-links img {
    width: 150px;
    border: 2px solid #4CAF50; /* Green */
    border-radius: 5px;
}
