@font-face {
   font-family: 'Montserrat';
   font-style: normal;
   font-weight: 600;
   src: url('/fonts/montserrat.woff2');
}
body {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    padding: 20px;
    background-color: #F7F6F7;
}
.download-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}
.download-section a img {
    width: 200px;
}

h2 {
    font-size: 24px;
}

.continue-button {
    text-align: center;
}

.continue-button .button {
    height: 58px;
    width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #3E3A94;
    color: white;
    font-size: 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

@media (min-width: 601px) {
    .download-section {
        flex-direction: row;
        justify-content: center;
    }
}