* {
    box-sizing: border-box;
    list-style: none;
    font-family: timeburner-GA;
    -webkit-tap-highlight-color: transparent;
    /* убирает синий/серый фон при тапе */
    -webkit-user-select: none;
    /* запрет выделения в Safari */
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

html,
body {
    height: 100%;
    overflow: hidden;
}

@font-face {
    font-family: "timeburner-GA";
    src: url("../fonts/timeburnernormal.ttf") format("truetype");
  }
  
  @font-face {
    font-family: "android-GA";
    src: url("../fonts/Android 101.ttf") format("truetype");
  }
  

h1 {
    font-size: calc(var(--index) * 1);
    font-weight: bold;
    letter-spacing: .2em;
}

a {
    color: #00aeef;
    text-decoration: none;
}

body {
    background-color: black;
    perspective: 5000px;
}

svg,
path,
image {
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

:root {
    --index: calc(1vw + 1vh);
    --scale-multiplier-a: 1;
    --scale-multiplier-b: 1;
    --scale-multiplier-c: 1;
    --scale-multiplier-f: 1;
    --scale-txt-multiplier: 1;
    --scale-frame-multiplier: 1;
}