.popUpMess {
  position: fixed;
  z-index: 100;
  top: 0px;
  left: 0;
  right: 0;
  pointer-events: none;
  text-align: center;
  -webkit-animation: 2s ease toTop;
  -moz-animation: 2s ease toTop;
  -o-animation: 2s ease toTop;
  animation: 2s ease toTop;
}
@-webkit-keyframes toTop {
  0% {
    top: 200px;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    top: 0px;
  }
}
@-moz-keyframes toTop {
  0% {
    top: 200px;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    top: 0px;
  }
}
@-o-keyframes toTop {
  0% {
    top: 200px;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    top: 0px;
  }
}
@keyframes toTop {
  0% {
    top: 200px;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    top: 0px;
  }
}
.popUpMess p {
  display: inline-block;
  padding: 5px 10px;
  background: greenyellow;
}