html,
body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

main {
    flex: 1;
}

.navbar-brand img {
    margin-right: 10px;
}

.navbar {
    background: linear-gradient(to bottom, #042124, #042124);
}

.hero {
    background: linear-gradient(to bottom, #042124, #008080);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.services-icon {
    font-size: 40px;
    color: #3282b8;
}

.form-section {
    background: #f4f4f4;
    padding: 60px 0;
}

.btn-primary {
    background-color: #008080;
    border-color: #008080;
}

.btn-primary:hover {
    background-color: #042124;
    border-color: #3282b8;
}

.btn-light {
    background-color: #FF7300;
    border-color: #FF7300;
    color: #fff;
}

.btn-light:hover {
    background-color: #FF7300;
    /* border-color: #fff; */
    border: 3px solid #fff;
    color: #fff;
}

.bi {
    font-size: 50px;
    color: #008080;
}

.bi-google-play {
    font-size: 20px;
}

footer {
    background: linear-gradient(to top, #042124, #008080);
    color: #bbb;
    padding: 40px 0;
}

footer a {
    color: #bbb;
    text-decoration: none;
}

footer a:hover {
    color: white;
}