/* =========================
   1. Box sizing
   ========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* =========================
   2. Remove default margins
   ========================= */
* {
  margin: 0;
  padding: 0;
}

/* =========================
   3. HTML & body defaults
   ========================= */
html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  background-color: #000;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  font-family: 'Gilroy';
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
}

.mainTitle{
  font-weight: 500;
  font-size: 64px;
  line-height: 100%;
  text-transform: uppercase;
  color: #caccc8;
  font-family: 'DrukCyr-medium';
}

.mainText{
  font-weight: 400;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.7);
}

.mainText span{
  font-weight: 600;
  color: #fff;
}

.mainTitle span{
  color: #97ff74;
}

@media (max-width: 450px) {
  .mainTitle{
    font-size: 14.54vw;
  }
  .mainText{
    font-size: 3.41vw;
  }
}

@media(min-width: 800px){
  .mainTitle{
    font-size: 5vw;
    padding-bottom: 2vw;
  }
  .mainText{
    font-size: 1.2vw;
  }
}

.wrapper{
    width: 100%;
    overflow: hidden;
}

/* =========================
   4. Media elements
   ========================= */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* =========================
   5. Forms
   ========================= */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

/* =========================
   6. Links
   ========================= */
a {
  color: inherit;
  text-decoration: none;
}

/* =========================
   7. Lists
   ========================= */
ul,
ol {
  list-style: none;
}

/* =========================
   8. Headings & text
   ========================= */
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

p {
  overflow-wrap: break-word;
}

/* =========================
   9. Tables
   ========================= */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* =========================
   10. Accessibility & UX
   ========================= */
:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* =========================
   11. Reduced motion
   ========================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
