.notes {
  display: block;
  margin: auto;
  position: absolute;
  width: 30%;
  min-width: 60px;
  height: 400px;
  border: 0px solid #000;
  right: 0;
  top: 50px;
}
.n-1,.n-2,.n-3,.n-4,.n-5,.n-6 {
  position: absolute;
  animation: notes 2.5s infinite linear;
  font-size: 30px;
  opacity: 0;
}
.n-1 {
  top: 0;
  left: 0;
  animation-delay: 0.5s;
}
.n-2 {
  top: 250px;
  left: 60%;
  animation-delay: 1.5s;
}
.n-3 {
  top: 150px;
  left: 60%;
  animation-delay: 2s;
}
.n-4 {
  top: 350px;
  left: 70%;
  animation-delay: 1s;
}
.n-5 {
  top: 30px;
  left: 50%;
  animation-delay: 3s;
}
.n-6 {
  top: 80px;
  left: 45%;
  animation-delay: 2s;
}
@keyframes notes {
  0% {
    transform: scale(1) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
    transform: scale(1.5) translate(50%, -50%);
  }
  100% {
    transform: scale(1.5) translate(100%, -100%);
    opacity: 0;
  }
}
@media(min-width: 280px) and (max-width: 1199px) {
.n-1 {
  top: 0;
  left: 0;
}
.n-2 {
  top: 130px;
  left: 70%;
}
.n-3 {
  top: 180px;
  left: 75%;
}
.n-4 {
  top: 230px;
  left: 80%;
}
.n-5 {
  top: 30px;
  left: 75%;
}
.n-6 {
  top: 80px;
  left: 80%;
}  
}
@media(min-width: 280px) and (max-width: 767px) {
.notes {
  width: 70%;
  height: 300px;
}  
.n-1,.n-2,.n-3,.n-4,.n-5,.n-6 {
  font-size: 19px;
}
}
@media(min-width: 768px) and (max-width: 1199px) {
.notes {
  width: 35%;
  height: 200px;
}
.n-1,.n-2,.n-3,.n-4,.n-5,.n-6 {
  font-size: 19px;
}
}