@font-face {
  font-family: 'Helvetica Neue';
  src: local('Helvetica Neue Roman'), local('Helvetica-Neue-Roman'),
    url('/font/HelveticaNeueCyr-Roman.woff2') format('woff2'),
    url('/font/HelveticaNeueCyr-Roman.woff') format('woff'),
    url('/font/HelveticaNeueCyr-Roman.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  margin: 0;
  padding: 0;

  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;

  z-index: -1;
  background-color: #f5f6fa;
}

#preloader svg {
  margin: 0;
  padding: 0;

  margin-bottom: 16px;

  width: 40px;
  height: 40px;

  animation: spin 2s linear infinite;
}

#preloader h1 {
  margin: 0;
  padding: 0;

  text-align: center;
  font-family: "Helvetica Neue";
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.1;
  color: #0b0b0b;
}