.skeleton{
    width: 100%;
    padding: 50px;
  margin-bottom: 0.5rem;
  border-radius: 0.25rem;
  margin-top: 30px;
}
.skeleton {
    animation: skeleton-loading1 1s linear infinite alternate;
  }
  
  @keyframes skeleton-loading1 {
    0% {
      background-color: hsl(0, 0%, 57%);
    }
    100% {
      background-color: hsl(0, 0%, 81%);
    }
  }