

body{
    margin: 0;
    padding: 0;
    background: #f5f5f5;
}
.p-between{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    transition: 0.6s;
}
.p-between-col{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    transition: 0.6s;
}
.evenly{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 100%;
    transition: 0.6s;
}
.justify-center{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    transition: 0.6s;
}
.cuerpo{
    display: flex;
    flex-direction: column;
}
.center{
    text-align: center;
}
.pady-1{
    padding: 10px 10px;
}
.pady-2{
    padding: 20px 20px;
}
.animation-load{
  animation-name: grow-shrink;
  animation-duration: 4s;
}
@keyframes grow-shrink {
    0% { transform: scale(1); }
    80% { transform: scale(0.9); }
  }
