body {
    margin: 0;
    font-family: system-ui, sans-serif;
    height: 100%;
    width: 100vw;
    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{
    padding-top: 200px;
    padding-bottom: 200px;
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: 20px auto;
    justify-items: center;
    align-items: center;
    row-gap: 20px;
    /*max-width: 1400px;*/
}