:root {
    --bs-primary: #014aad;
}
body {
    background-attachment: fixed;
    background: rgb(11,83,177);
    background: linear-gradient(0deg, rgba(11,83,177,1) 0%, rgba(183,232,251,1) 100%);
}

section {
    background: rgb(11,83,177);
    background: linear-gradient(0deg, rgba(11,83,177,1) 0%, rgba(183,232,251,1) 100%);
}

.btn-primary {
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
}

.display-1 {
    font-size: 8rem;
}

@media only screen and (max-width: 768px) {
    .display-1 {
        font-size: 3rem;
    }
    .fs-3 {
        font-size: 1rem !important;
    }
}