@font-face {
    font-family: 'Arial Italic';
    src: url('../woff/ARIALI.woff') format('woff'); /* Поднимаемся из папки css и заходим в woff */
    font-style: normal;
    font-weight: normal;
    font-display: swap; /* Помогает шрифту загрузиться быстрее */
}
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
body {
    background-color: black;
    color: white;
    font-family: "Arial italic";
}
.IMGG {
  position: fixed;
  top: 0;
  left: 0;
  user-select: none;
  pointer-events: none;
  max-width: 100%; 
  max-height: 100%;
  will-change: unset;
  z-index: 1;
}


@media (max-width: 768px) {
    .IMGG {
        width: 400px; 
    }
    h1 {
        font-size: 1.75rem;
    }
    .desc {
    font-size: 1rem;
}
}

@media (max-width: 480px) {
    .IMGG {
        width: 250px;
    }

h1 {
        font-size: 1.5rem;
    }
    .desc {
    font-size: 0.75rem;
}
}
