
.grid {
    
  margin: center;
  width: 100%;
}

.row {
 
  color:skyblue;
  background-color:#FFFFFF;
  box-shadow: 0 1px 2px #999;
  opacity: 0;
  height: 60px;
  font-family: Zeebish;
  padding: 10px 5px;
  text-align:center;
  width: 80%;
  line-height: 60px;
  border-radius: 5px;
  margin: auto;
  margin-bottom: 10px;
  -webkit-animation: fadeIn 1.5s ease-out;
  animation: fadeIn 1.5s ease-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
  transition: all .3s;
}

.row:hover {
  box-shadow: 5px 6px 12px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  line-height: 5px;
  }


.row:nth-child(1n) {
  -webkit-animation-delay:.8s;
  animation-delay: .8s;
}

.row:nth-child(2n) {
  -webkit-animation-delay: .2s;
  animation-delay: .2s;
}

.row:nth-child(3n) {
  -webkit-animation-delay: 0.3s;
  animation-delay: .3s;
}

.row:nth-child(4n) {
  -webkit-animation-delay: 0.4s;
  animation-delay: .4s;
}

.row:nth-child(5n) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.row:nth-child(6n) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.row:nth-child(7n) {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.row:nth-child(8n) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.row:nth-child(9n) {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

.row:nth-child(10n) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.row:nth-child(11n) {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}

.row:nth-child(12n) {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.row:nth-child(13n) {
  -webkit-animation-delay: 1.3s;
  animation-delay: 1.3s;
}

.row:nth-child(14n) {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}

.row:nth-child(15n) {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translate(-1000px, -500px);
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
    transform: translate(0px, 0px);
  }
}
