/*
Daniel Song
Stylesheet for about me page
*/


#content {
    display:flex;
    gap: 5%;
    align-items:center;
    max-width: 800px;
    margin-left: 20%;
}

#content p {
    max-width: 75%;
    color: var(--text1); 
}

#content figure {
    max-width: 50%;
    margin-left: 40px;
}

#content figure img {
    width: 100%;
    display: block;
}

figcaption {
    font-size: 0.75rem;
    color: var(--text2);
    margin-top: 6px;
}

#content p {
    animation: fadein 1.5s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

#content figure {
    animation: fadein 1.5s ease forwards;
    animation-delay: 0s;
}