@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/raleway-v28-latin_cyrillic-regular.woff2') format('woff2'),
        url('../fonts/raleway-v28-latin_cyrillic-regular.woff') format('woff');
}
* {
    cursor: url('../img/m-icon.png'), pointer;
}

body {
    font-family: 'Raleway', sans-serif;
    background: rgb(0, 0, 0);
    overflow: hidden;
}

body {
    font-size: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  
    background: #000;
    background: url('../img/map.png') #000 no-repeat center;
    background-size: 500px;
    flex-direction: column;
    gap: 20px;
    color: #fff;
}

img {
    max-width: 100%;
    width: 250px;
}

span {
    color: #fff;
}

a {
    position: relative;
    background: #fff;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.5em;
    /* letter-spacing: 0.1em; */
    font-weight: 400;
    padding: 10px 30px;
    transition: 0.5s;
}

a:hover {
    background: var(--clr);
    color: var(--clr);
    letter-spacing: 0.15em;
    box-shadow: 0 0 15px var(--clr);
}

a::before {
    content: '';
    position: absolute;
    inset: 2px;
    background: #000;
}

a span {
    color: #fff;
    position: relative;
    z-index: 2;
}

a i {
    position: absolute;
    inset: 0;
    display: block;
}

a i::before {
    content: '';
    position: absolute;
    top: 0;
    left: 80%;
    width: 10px;
    height: 4px;
    background: #000;
    transform: translateX(-50%) skewX(325deg);
    transition: 0.5s;
}

a:hover i::before {
    width: 20px;
    left: 20%;
}

a i::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 10px;
    height: 4px;
    background: #000;
    transform: translateX(-50%) skewX(325deg);
    transition: 0.5s;
}

a:hover i::after {
    width: 20px;
    left: 80%;
}

/* span:hover {
    color: var(--clr);
} */

.h1 {
    font-size: 25px;
}

p {
    text-align: center;
    font-size: 10px;
    color: rgb(169, 169, 169);
}


/* preloader */

.preloader2 {
   
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 3;
    transition: 1s all;
    opacity: 1;
    visibility: visible;
    background: url(https://i.pinimg.com/originals/f5/98/76/f59876d316abc628202df9012706d68f.gif) center no-repeat;
}



.preloader2.done {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 100%;
    height: 75px;
    left: 50%;
    top: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    line-height: 75px;
    text-align: center;
    font-size: 30px;
}




/* snow */
/* *, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    color-scheme: dark;
  }
  
  body {
    margin: 0;
    padding: 50px;
    background-color: #000000;
    color: #ffffff;
    font-family: "Roboto", sans-serif;
  }
  
  .snow-toggle {
    display: flex;
    flex-direction: row;
    padding: 0;
    margin: 0;
    gap: 40px;
    border: 0;
  }
  
  .snow-toggle__label {
    padding-bottom: 10px;
  }
  
  .snow-toggle__item {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  
  .snow-toggle__text::before {
    content: "";
    position: absolute;
    left: 0;
    top: calc(50% - 12px);
    width: 25px;
    height: 25px;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
  }
  
  .snow-toggle__control {
    width: 25px;
    height: 25px;
    opacity: 0;
    margin-right: 15px;
  }
  
  .snow-toggle__control:focus + .snow-toggle__text::before {
    border-color: #C56FFF;
  }
  
  .snow-toggle__control:checked + .snow-toggle__text::before {
    background-color: #FFFFFF;
    background: radial-gradient(
      circle,
      #FFFFFF 0%,
      #FFFFFF 40%,
      transparent 50%,
      transparent 100%
    );
  }
  
  .snow {
    --animation-name: snowfall;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
  }
  
  .snow__flake {
    position: relative;
    top: -1.5em;
    color: #c1dcec;
    animation-name: var(--animation-name);
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    will-change: transform;
  }
  
  @keyframes snowfall {
    0% {
      transform: translateY(0);
    }
  
    100% {
      transform: translateY(calc(100vh + 1.5em));
    }
  } */