scroll error img{

  position: absolute;
  top: 40%;
  left:calc(50% - 35px);
  width: 70px;
  height: 70px;
  object-fit: contain;
}

scroll error p{
  position: absolute;
  top:calc(40% + 75px);
  left:calc(50% - 75px);
  text-align: center;
  width:150px;
  font-size: 17px;
}

scroll error{
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  display:block;
  animation-name: error_startup;
  animation-duration: 0.7s;
  animation-iteration-count: 1;
  -webkit-animation-name: error_startup;
  animation-timing-function: ease;
  -webkit-animation-duration: 0.7s;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-timing-function: ease;
}

@keyframes error_startup
{
  0%{
    transform: scale(0.8);
    opacity: 0;
  }
  100%
  {
    transform: scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes error_startup
{
  0%{
    transform: scale(0.8);
    opacity: 0;
  }
  100%
  {
    transform: scale(1);
    opacity: 1;
  }
}
