body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8e4;
    color: #595f3b;
}

main {
    padding: 20px;
    height: auto;
    background-image: radial-gradient(circle, rgb(213, 216, 189) 5%, transparent 50%);
}

.about-section {
    font-family: "Raleway", Arial, sans-serif;
    font-style: normal;
    padding: 50px 20px;
    text-align: center;
}

.about-section h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.history {
    text-align: left;
}

.history h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.history p {
    text-align: justify;
    text-justify: inter-word;
    font-size: 1.2em;
    line-height: 1.6;
    width: 1400px;
}

.history p span.indent {
    display: inline-block;
    margin-left: 20px;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-thumb {
    background: #595f3b;
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    background: #f8f8e4;
}

html {
    scrollbar-width: thin;
    scrollbar-color: #595f3b #f8f8e4;
}

@media (max-width: 768px) {
    .about-section h1 {
        font-size: 2.5em;
    }

    .history h2 {
        font-size: 1.8em;
    }

    .history p {
        font-size: 1em;
        width: 90%;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 30px 10px;
    }

    .about-section h1 {
        font-size: 2em;
    }

    .history h2 {
        font-size: 1.5em;
    }

    .history p {
        font-size: 0.9em;
        width: 90%;
    }
}
