.btn{
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
.gold{
    background: -moz-linear-gradient(45deg, #2e9e5b 0%, #fdb72c 100%);
    background: -webkit-gradient(left bottom, right top, color-stop(0%, #2e9e5b), color-stop(100%, #fdb72c));
   background: -webkit-linear-gradient(45deg, #2e9e5b 0%, #fdb72c 100%);
    background: -o-linear-gradient(45deg, #2e9e5b 0%, #fdb72c 100%);
    background: -ms-linear-gradient(45deg, #2e9e5b 0%, #fdb72c 100%);
    background: linear-gradient(45deg, #9e802e 0%, #fdb72c 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2e9e5b', endColorstr='#fdb72c', GradientType=1 );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-center {
    text-align: center!important;
}
.main-title{
    width: 680px;
    color: #192839;
    font-size: 36px;
    display: block;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 12px;
}
.main-paragraph{
    color: #656565;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5;
    width: 500px;
}

@media only screen and (max-width: 768px) {
    .main-title {
        width: 100%; /* Adjust the width for smaller screens */
        font-size: 24px; /* Adjust the font size for smaller screens */
        margin-bottom: 6px; /* Adjust margin for smaller screens */
    }

    .main-paragraph {
        width: 100%; /* Adjust the width for smaller screens */
        font-size: 14px; /* Adjust the font size for smaller screens */
    }
}