html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.faq-item {
    /* Add some spacing around each FAQ item */
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
    /* Space between items */
}

/* index.css */

.app-button {
    height: 60px;
    width: 170px;
}

.contact-us {
    text-align: center;
    /* Center the heading and button */
    margin-top: 40px;
    /* Add spacing from the FAQ section */
}

.contact-us button {
    padding: 10px 20px;
    background-color: #1D3F4C;
    /* Blue background */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 150px;
    height: 40px;
}

/* Add hover effect to the button */
.contact-us button:hover {
    background-color: #71C3CB;
    /* Darker blue on hover */
}


main {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100%;
    text-align: center;
    background-color: white;
}

main.initial-view {
    background-color: #1D3F4C;
}


.header-content {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.brand-link {
    text-decoration: none;
    color: white;
    font-size: 18px;
    margin-right: 40px;
}

.brand-link:visited {
    color: white;
}

.brand-link:hover {
    color: white;
}

.background-image {
    background-image: url('./assets/lines.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.brand-intro {
    margin-top: 10%;
    margin-bottom: 10%;
}

.brand-title {
    color: white;
    font-size: 100px;
    font-family: 'Otomanopee One'
}

.brand-subtitle {
    margin-top: 2%;
    color: white;
}

.initial-images {
    position: absolute;
    bottom: -32%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.after-initial-view-space {
    height: 40%;
}

.download-app {
    margin-bottom: 100px;
}

.download-title {
    font-weight: bolder;
    color: #1D3F4C;
    font-size: 80px;
}

.download-subtitle {
    color: #1d3f4cae;
    font-size: 20px;
}

.stores{
    margin-top: 15%;
}

.foot {
    padding: 5%;
    background-color: #1D3F4C;
}

.foot-divider {
    background-color: #C1C1C1;
    height: 1px;
    margin-top: 50px;
    margin-bottom: 10px;
}

.foot-text {
    color: #C1C1C1;
}