@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');


*{ 
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins' sans-serif;

}
.container{
margin-top: 150px;
width: 100%;
height: auto;
justify-content: center;
display: flex;
}

.imagedg{
float: left;
width: 400px;
height: 500px;
border: solid 2px red;
border-radius: 6px;
}
.imagedg img {
width: 100%;
height: 100%;
border-radius: 6px;
}
.imagedg h1{
color: black;
font-size: 30px;
margin-left: 70px;
}

.imagedg h4{
font-size: 40px;
margin-left: 30px;
background-color: darkgrey;
color: blue;
}

.mot{

float: right;
width: 65%;
height: 750px;
margin-left: 10px;
border: solid 2px blue;
border-radius: 15px;
background-color: palevioletred;
display: block;

}

.mot p{

margin-top: 15px;
padding-left: 12px;
font-size: 25px;

}




@media (max-width: 500px){
  .container {

    flex-direction: column;
  }
.mot{

width: 100%;
height: auto;
margin-top: 120px;
border-radius: 5px;
}

.mot p{

margin-top: 10px;
height: auto;
font-size: 20px;
padding-bottom: 8;

} 
 
}