.about-box{ padding: 1rem; }
.about-box img{
    float: left;
    width: 500px;
    height: 300px;
    margin: 1rem;
}

.about{ 
    padding: 1rem;
    text-align: justify; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about span:nth-child(1){
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.about span:nth-child(2){
    line-height: 1.82;
    font-size: 1rem;
}

@media (max-width: 750px){
    .about-box{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }
}


@media (max-width: 570px){
    .about-box img{
        width: 400px;
        height: 250px;
    }
}

@media (max-width: 450px){
    .about-box img{
        width: 80vw;
        height: 40vw;
        margin: 0;
    }
}