@font-face {
    font-family: 'hubot-sansbold_wide';
    src: url('hubot-sans-boldwide-webfont.woff2') format('woff2'),
         url('hubot-sans-boldwide-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
body, html {
  height: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'hubot-sansbold_wide';
  background-color: #92d600;
}

.container {
  text-align: center;
  opacity: 0;
  animation: fadeIn 1.5s ease-in forwards;
  color: white;
}

@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

img {
  max-width: 100%; /* Настройте размер в соответствии с вашими потребностями */
  height: auto;
  /*filter: brightness(0) saturate(100%) invert(84%) sepia(31%) saturate(2750%) hue-rotate(25deg) brightness(92%) contrast(100%);*/
}