@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


.about{
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    /* background-color: #f4ece6; */
    /* border: 3px solid red; */

}

.myimg img{
    width: 300px;
    height: 400px;
    /* border-radius: 10px; */
    border: 5px solid #c1b6a4;
}
.abt-text{
    width: 500px;
    height: 400px;
    padding-top: 150px;
    letter-spacing: 2px;
    text-shadow: 0 10px 20px;
}
.abt-text h2{
    font-size: 2em;
    margin-bottom: 5px;
}
.abt-text h3{
    font-size: 1.5em;
    margin-bottom: 10px;
}
.abt-text p{
    text-wrap: wrap;
}
@media(max-width: 760px){
    .about{
        padding-top: 50px;
        flex-direction: column;
        height: 650px;
        align-content: center;
    }
    .abt-text{
        width: 300px;
        font-size: .9em;
        margin: auto;
        text-align: center;
        padding-top: 40px;
    }
    .abt-text p{
        width: 300px;

    }

}
@media(max-width: 800px){
    .myimg img{
        width: 230px;
        height: 300px;
        border: 5px solid #c1b6a4;
    }
    .about{
        justify-content: space-around;
    }
}