html {
    scroll-behavior: smooth;
}

body {
    margin: 0px;
}

.newsletter-section {
    position: relative;
    min-height: 500px;
    width: 70%;
    margin: auto;
    margin-top: 20px;
}

.newsletter-header {
    font-family: SterlingDisplay Roman;
    font-size: 36px;
    border-bottom: 1px solid rgb(200, 200, 200);
}

.newsletter-text {
    font-family: Santral;
}

.newsletter-subheader {
    margin-top: 40px;
    font-family: SterlingDisplay Roman;
    font-size: 36px;
}

.newsletter-list-item {
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: Santral;
}

.newsletter-ring-background-image {
    position: absolute;
    top: 0px;
    right: 0px;
    filter: invert(100%) sepia(0%) saturate(7254%) hue-rotate(51deg) brightness(118%) contrast(57%);
    z-index: -1;
}

@media only screen and (max-width: 768px) {
    .newsletter-section {
        width: 90%;
        margin-top: 20px;
    }

    .newsletter-text {
        font-family: Santral Medium;
        font-size: 14px;
    }

    .newsletter-subheader {
        margin-top: 20px;
        font-family: Santral Bold;
        font-size: 16px;
    }

    .newsletter-list {
        margin-top: 0px;
        padding-left: 20px;
    }

    .newsletter-list-item {
        font-family: Santral Medium;
        font-size: 14px;
    }

    .newsletter-ring-background-image {
        filter: invert(99%) sepia(2%) saturate(17%) hue-rotate(9deg) brightness(110%) contrast(80%);
    }
}