/* Import the font */
@font-face {
    font-family: saira;
    src: url(font/Saira-VariableFont_wdth\,wght.ttf);
}

#about #content {
    display: flex;
}

#about #content .blabla {
    align-self: flex-start;
    margin: 0px;
    padding: 0px;
}

#about #content .blabla p {
    font-family: saira;
    color: var(--text-color-brown);
}

@media screen and (max-width: 725px) {

    #about #content {
        flex-direction: column;
        width: 70vw;
        align-items: center;
    }

    #about p{
        font-size: 17px;
        color: var(--text-color-brown);
    }

    #about #content img {
        display: none;
    }


}

@media screen and (min-width: 726px) {

    #about {
        display: flex;
        flex-direction: column;
    }

    #about #content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        width: 90vw;
    }
    
    #about #content p {
        font-size: 20px;
    }

    #about #content p:first-of-type {
        font-size: 20px;
        margin-top: 0px;
    }

    #about #content img {
        width: 10em;
        height: 10em;
        border-radius: 10px;
        align-self: flex-start;
        margin-right: 2em;
    }
}