@import url(https://fonts.googleapis.com/css?family=Roboto);
@import url(https://fonts.googleapis.com/css?family=Material+Icons);
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@500&display=swap');

body {
  padding: 16px;
  background: url(/img/bigbg.png) no-repeat;
  background-size:cover;
}

@font-face {
  font-family: 'Classic';
  src: url('/fonts/clacon.ttf');
}

* {
  font-family: 'Classic', monospace;
}

.logo-main {
  position: absolute;
  top: 28%;
  left: 15%;
  opacity: 0;
  animation-name: fadeInOpacity;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 4s;
}

.logo-wrike {
  width: 180px;
  display: block;
  margin-left: 30px;
}

@keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}