html{
	background:#4a4736 url(https://askcow.app/static/images/bg/grunge_bg.jpg) repeat-x 100% 0; 
}
body{
    font:normal 16px/1.5 "Trebuchet MS", Arial, Helvetica, sans-serif;

    font-family:"Trebuchet MS", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Tahoma, sans-serif;
	background:url(https://askcow.app/static/images/bg/crosspatch_blue.png) repeat;
    overflow: hidden;
    color:#000;
}

.preloader {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
}

.pulse-image {
  width: 80px;
  height: auto;
  animation: soft-pulse 2s ease-in-out infinite;
  will-change: opacity, transform;
}

@keyframes soft-pulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.96);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}