@media screen and (min-width: 960px) {
  .container0{
      width:  400px;
     height: 630px;
      padding: 1em;
      border-radius:15px;
      background: #ffebf0;
  }
 }
 
@media screen and (max-width: 480px) {
  .container0{
      width:  330px;
     height: 610px;
      padding: 1em;
      border-radius:15px;
      background: #ffebf0;
  }
}

@media screen and (min-width: 481px) and (max-width: 959px) {
  .container0{
      width:  400px;
     height: 630px;
      padding: 1em;
      border-radius:15px;
      background: #ffebf0;
  }
}