*   {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    --brw-clr: rgb(178, 43, 47);
    --red-clr: rgb(255, 0, 0);
    --black-pri-clr: rgb(0, 0, 0);
    --less-black-clr: rgb(25, 23, 23);
    --dark-grey-clr: rgb(35, 35, 35);
    --less-light-grey-clr: rgb(128, 128, 128);
    --lesser-light-grey-clr: #848484;
    --font-family: "League Gothic", sans-serif;
    --font-family-secondary: "Poppins", sans-serif;
    --medium-font-weight: 700;
    --bold-font-weight: 1000;
    --small-font-size: .9rem;
    --medium-font-size: 1.4rem;
    --semi-medium-font-size: 2rem;
    --large-font-size: 3rem;
    --container-width: 1000px;
    --all-basic-transition: all linear .1s;
}


.about-main-container   {
    display: flex;
    width: var(--container-width);
    gap: 3rem;
}

#about-title    {
    border: none;
}

.about-text-container   {
    display: flex;
    flex-direction: column;
    gap: .7rem;
    font-size: var(--small-font-size);
    font-family: var(--font-family-secondary);
}

@media (max-width: 1000px) {
    .about-main-container {
        width: 95vw;
    }
    #newsletter-container {
        display: none;
    }
}
