body {
    margin: 0;
    font-family: system-ui, sans-serif;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    background-color: #ffffff;
}

body::-webkit-scrollbar {
    width: 10px;               /* width of the entire scrollbar */
}
  
body::-webkit-scrollbar-track {
    background: #363636;        /* color of the tracking area */
}
  
body::-webkit-scrollbar-thumb {
    background-color: #85B400;    /* color of the scroll thumb */
    border-radius: 20px;       /* roundness of the scroll thumb */
}

.main {
    flex: 1;                 /* fills remaining space under header */
    overflow-y: auto;        /* scrolls if content is too tall */
    overflow-x: hidden;
}

.main_content{
    box-sizing: border-box;
    padding-top: 50px;
    padding-bottom: 100px;
    display: flex;
    flex-direction: column;
    width: 95%;
    margin: 100px auto;
    justify-items: center;
    align-items: center;
    row-gap: 80px;
    max-width: 1440px;
    margin-bottom: 0;
}

.title{
    color: #000000;
    font-weight: bolder;
    font-size: 60px;
    text-align: center;
    margin-bottom: 10px;
    margin: 0;
}

.sub_title{
    margin: 0px auto;
    color: #686868;
    font-weight: medium;
    font-size: 20px;
    margin-top: 20px;
    text-align: center;
}

.text{
    font-size: 20px;
    text-align: center;
    width: 90%;
    margin: 0;
    color: #686868;
}

section{
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

section .title{
    font-size: 40px;
    margin: 0;
    text-align: center;
}

section .sub_title{
    margin: 0px auto;
    font-weight: medium;
    font-size: 20px;
}

section .text{
    width: 100%;
    margin-top: 20px;
    color: #686868;
}

@media (max-width: 600px) {
    .main_content{
        margin-top: 60px;
        width: 90%;
    }

    .title{
        font-size: 30px;
    }

    .text{
        font-size: 18px;
        text-align: justify;
    }

    section .title{
        font-size: 25px;
        margin: 0;
        text-align: center;
    }

    section .sub_title{
        margin: 0px auto;
        font-weight: medium;
        font-size: 18px;
    }

    section .text{
       text-align: center;
    }
}