@media screen and (min-width: 960px) {
  .container0{
      width:  500px;
     height: 760px;
      padding: 1em;
      border-radius:15px;
      background: #ffebf0;
  }
 }
 
@media screen and (max-width: 480px) {
  .container0{
      width:  320px;
      height: 870px;
      padding: 1em;
      border-radius:15px;
      background: #ffebf0;
  }
}

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