:root {
    --bg: #FFECF3;
    --bg2: #FFF5F9;
    --bg-light: #ffecf3a6;
    --bg-dark: #fdafcb;
    
    --tx: #000000;

    --cf: #DB155E;

    --font-main: "Space Grotesk";
    --font-focus: "VT323";
    --font-focus2: "Alegreya Sans SC";
    /* --font-focus3: "Reey"; */
    /* --font-focus4: "Handlee"; */

    --header-height: 120px;
}

::selection {
    background-color: var(--cf);
    color: var(--bg);
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    background-color: var(--bg);
    color: var(--tx);
    font-family: var(--font-main);
}

#smooth-content {
    max-width: 1766px;
    margin: 0 auto;
}

.about {
    display: flex;
    flex-direction: row;
    gap: 70px;
    justify-content: space-between;
}

#about-paragraphs {
    font-size: 30px;
    text-align: justify;
}

.about-left {
    min-width: 0;
    flex: 1;
}

.about-right {
    position: relative;
    height: fit-content;
    width: 100%;
    min-width: 0;
    flex: 1;
}

.about-img-container {
    max-height: calc(100vh - var(--header-height));
    width: 100%;
    /* background-color: red; */
    /* margin-bottom: clamp(-100px, -34%, -1px); */
    position: relative;
}

.about-img {
    /* width: 70%; */
    margin-left: auto;
    display: block;
    height: 72%;
    max-width: 80%;
}

.about-logo {
    /* transform: translateY(-48%); */
    /* width: 90%; */
    height: 58%;
    max-width: 90%;
}

@media (max-width: 1100px) {
    #about-paragraphs {
        font-size: 26px;
    }
}
@media (max-width: 940px) {
    .about {
        margin: 20px 0;
    }
}
@media (max-width: 858px) {
    .about {
        flex-direction: column-reverse;
        align-items: center;
        margin: 10px 0;
    }
    .about-right {
        width: 60vw;
    }
}
@media (max-width: 670px) {
    #about-paragraphs {
        font-size: 24px;
    }
}
@media (max-width: 430px) {
    #about-paragraphs {
        font-size: 20px;
    }
}
@media (max-width: 300px) {
    #about-paragraphs {
        font-size: 18px;
    }
}
@media (max-width: 230px) {
    #about-paragraphs {
        font-size: clamp(14px, 8vw, 16px);
    }
}