
a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, button, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, input, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, select, small, span, strike, strong, sub, summary, sup, table, tbody, td, textarea, tfoot, th, thead, time, tr, tt, u, ul, var, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f4;
    font-family: "Open Sans", sans-serif;
    color: rgb(5, 34, 74);
    font-size: 14px;
    line-height: 22px;
    
}

.note{
    padding-top: 20px;
}

.app-download-container {
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 90%;
    text-align: center;
}

h2 {
    color: rgb(5, 34, 74);
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
}

.app-link {
    color: #007bff;
    text-decoration: none;
}

.app-link:hover {
    text-decoration: underline;
}

.instructions {
    text-align: left;
    margin: 20px 0;
}

.instructions h3 {
    margin-bottom: 10px;
}

.instructions ul {
    list-style: none;
    padding: 0;
}

.instructions li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.highlight {
    color: red;
    font-weight: bold;
}

.ios, .android {
    font-weight: bold;
}

.download-buttons {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    align-items: center;
}

.download-buttons a{
    color: rgb(5, 31, 77);
        font-size: 14px;
        text-align: center;
        line-height: 1.6;
}


.download-button {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.download-button img {
    max-width: 150px;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .download-buttons {
        flex-direction: column;
    }

    .download-button {
        margin-bottom: 20px;
    }
}