body, html {
    font-family: 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased;
}


header {
    height: 450px;
    width: 100%;
    background-color: #005475;
}

a {
    text-decoration: none;
    color: white;
}

h1,h2 {
    text-transform: uppercase;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 28px;
}

.text-white {
    color: white;
}

.text-black {
    color: black;
}

.header_content {
    text-align: center;
    padding: 10% 15% 15% 15%;
}

.download_section_cards {
    transform: translateY(-120px);
    column-gap: 5%;
    margin-right: 10%;
    margin-left: 10%;
}

.card {
    height: 300px;
    background-color: white;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding: 25px 30px;
    text-align: center;
    border-radius: 10px;
    position: relative;
}

.download-link-buttons {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 20px;
}

.download-link a {
    background-color: rgba(53,170,84,0.9);
    text-transform: uppercase;
    border: none;
    border-radius: 20px;
    padding: 10px 40px;
}

.download-link__secondary a {
    background-color: darkgray;
}


.download-link a:hover {
    background-color: white;
    color: rgba(53,170,84,0.9);
    border: 1px solid rgba(53,170,84,0.9);
}

.grow {
    transition: all .3s ease-in-out;
}
.grow:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 10px 0 rgba(0, 0, 0, 0.2), 0 10px 30px 0 rgba(0, 0, 0, 0.19);
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.card-img {
    border-radius: 20px;
    box-shadow: 0 8px 10px 0 rgba(0, 0, 0, 0.2), 0 10px 30px 0 rgba(0, 0, 0, 0.19);
}
