.about-content{
    /* display: flex;
    flex-direction: row;
    justify-content: center;
    /* align-items: center; */
    /* color: white; */ 
    padding-top: 80px;
    padding-bottom: 80px;
}

.about-photo{
    border-radius: 30px;
}

.about-text{
    padding: 20px;
    /* margin-top: 80px; */
    font-size: 20px;
}

#about-me-name, #about-me-text{
    opacity: 0;
}

#about-me-name{
    transform: translateX(-30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    /* animation: slideLeft 0.8s ease-out both; */
}

#about-me-text{
    transform: translateX(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    /* animation: slideRight 0.8s ease-out both; */
}

#about-me-name.visible, #about-me-text.visible{
    opacity: 1;
    transform: translateX(0);
}

/* @keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
} */

.about-text,
.section-paragraph {
    font-size: clamp(16px, 2.5vw, 20px);
}

.section-title{
    margin: 0;
    color: #A90000;
    text-transform: uppercase;
}

.section-heading{
    font-size: clamp(28px, 4vw, 41px);
    text-transform: uppercase;
    font-weight: bolder;
    text-transform: uppercase;
    font-size: 41px;
    color: white;
}

.section-paragraph{
    color: #AEAEAE;
    margin-top: 20px;
}

.photo {
    position: relative;
    display: inline-block;
}

.photo-text {
    position: absolute;
    inset: 0; 
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;

    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    
    padding: 15px;

    background: rgba(0, 0, 0, 0.4); 
}

#about-subtext{
    display: block;
    color: #A90000;
    font-weight: 400;
}

#about-checks{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 2rem;
}