html {
    scroll-behavior: smooth;
}

body {
    margin: 0px;
}

.suggestion-section {
    position: relative;
    min-height: 400px;
    width: 70%;
    margin: auto;
    margin-top: 20px;
    overflow: hidden;
}

.suggestion-header {
    font-family: SterlingDisplay Roman;
    font-size: 36px;
    border-bottom: 1px solid rgb(200, 200, 200);
}

.suggestion-content {
    width: 50%;
    font-family: Santral;
    font-size: 16px;
}

.suggestion-content-email-text {
    margin-top: 40px;
    margin-bottom: 4px;
}

.suggestion-textarea {
    display: block;
    height: 200px;
    width: 50%;
    min-height: 100px;
    padding: 10px;
    margin-top: 40px;
    font-family: Nunito;
    font-size: 14px;
    background-color: rgb(250, 250, 250);
    border-radius: 10px;
    border: 1px solid rgb(200, 200, 200);
}

.character-counter {
    font-family: Santral Medium;
    font-size: 12px;
}

.submit-suggestion-button {
    display: block;
    height: 40px;
    width: 120px;
    margin-top: 10px;
    color: white;
    font-family: Montserrat;
    background-color: rgb(20, 20, 20);
    border-radius: 10px;
    border: none;
    transition: background-color 0.2s;
}

    .submit-suggestion-button:hover {
        cursor: pointer;
        background-color: rgb(238, 36, 69);
    }

.suggestion-response-notification {
    font-family: SterlingDisplay Roman;
    font-size: 36px;
}

.aurum-email-text {
    font-family: Santral Bold;
}

.suggestion-ring-background-image {
    position: absolute;
    top: 0px;
    right: 0px;
    height: 400px;
    width: 400px;
    filter: invert(100%) sepia(0%) saturate(7254%) hue-rotate(51deg) brightness(118%) contrast(57%);
    z-index: -1;
}
@media only screen and (max-width: 768px) {
    .prevent-scrolling {
        overflow: hidden;
    }

    .suggestion-section {
        width: 100%;
        margin: auto;
        margin-top: 20px;
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }

    .suggestion-content {
        width: 100%;
        font-family: Nunito;
        font-size: 14px;
    }

    .suggestion-content-email-text {
        margin-top: 20px;
    }
    
    .suggestion-textarea {
        height: 140px;
        width: 100%;
        margin-top: 20px;
        font-family: Santral Medium;
        background-color: rgba(250, 250, 250, 0.8);
    }
    
    .submit-suggestion-button {
        font-family: Santral Medium;
    }

    .suggestion-response-notification {
        margin-top: 40px;
        font-family: Santral Medium;
        font-size: 18px;
    }

    .suggestion-ring-background-image {
        top: 40px;
        filter: invert(100%) sepia(6%) saturate(531%) hue-rotate(222deg) brightness(114%) contrast(90%);
    }

    .suggestion-content-email-text {
        margin-top: 40px;
    }
    
    .aurum-email-text {
        font-size: 14px;
    }
}