body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #FFD700; /* Yellow background color */
    color: #333;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.content {
    text-align: center;
    max-width: 400px;
    padding: 20px;
}

.logo {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

h1 {
    font-size: 2em;
    margin: 0;
}

h2 {
    font-size: 1.5em;
    margin: 10px 0;
}

p {
    font-size: 1em;
    margin: 20px 0;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.app-store, .google-play {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    font-size: 1em;
    display: flex;
    align-items: center;
    gap: 5px;
}

.app-store {
    background-color: #000;
}

.google-play {
    background-color: #FFD700; /* Match the background color */
    border: 2px solid #000;
    color: #000;
}
