main{
    display: flex;
    justify-content: center;
}
main > div{
    background-color:rgb(223, 0, 93) ;
    padding: 20px;
    border-radius:10px ;
    margin:20px 20px 0 20px;
    width: 60%;
    
}
main div div{
    display: flex;
    margin: 0;
}
main div div div{
    width: 550px;
    height: 400px;
    position: relative;
}
main div div div img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    border-radius:10px ;
    border: 4px solid white;
}
h1{
    font-size: 2.5em;
    color: white;
    text-align: center;
}
main div div p{
    width: 650px;
    padding: 0 0 0 50px;

}
div p{
    text-align: justify;
    font-size: 1.8em;
    color: white
}
@media screen and (Max-width: 500px){
    main > div{
    width: 85%;
    font-size: 0.8em;
    }
    main div div{
        flex-direction: column;
    }
    main div div p{
        width: auto;
        padding: 0 0 0 0;
    }
    main div div div{
        width:97.5% ;
        height: 250px;
    }
}