@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}
.main {
    width: 100%;
    height: auto;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}
.main-heading {
    width: 100%;
    height: 300px;
    background-color: #f8f8f8;
    justify-content: center;
    align-items: center;
    display: flex;
}
.main-heading h2 {
    font-size: 50px;
    color: #000000;
}
.text-container {
    width: 60%;
    height: auto;
    justify-content: left;
    display: block;
    flex-wrap: wrap;
    padding: 20px;
}
.text-container h3 {
    font-size: 20px;
    color: #aa832c;
    margin: 20px 0 10px 0;
}
.text-container p {
    font-size: 16px;
    color: #000;
    margin: 10px 0 20px 0;
    line-height: 30px;
}

@media (max-width: 450px) {
    .text-container {
        width: 95%;
        height: auto;
        justify-content: left;
        display: block;
        flex-wrap: wrap;
        padding: 20px;
    }
    .main-heading h2 {
        font-size: 30px;
    }
}