.about-text {
    flex: 2;
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 250px;
    border-radius: 8px;
}

.youtube-vid {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 30px;
}

.youtube-vid iframe {
    width: 700px;
    height: 394px;
    border-radius: 8px;
}

@media screen and (max-width: 768px) {
    .about-section {
        flex-direction: column;
        gap: 1rem;
    }

    .about-image img {
        max-width: 200px;
    }

    .youtube-vid {
        padding-left: 1rem;
        padding-right: 1rem;
        padding-bottom: 1rem;
    }

    .youtube-vid iframe {
        width: 100%;
        height: 250px;
        max-width: 400px;
    }
}