/* =========================
   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: #fff;
  line-height: 1.5;
  margin: 0;
  font-family: 'SourceSans3-Medium';
  padding: 0;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
}

.mainTitle{
  font-family: 'Righteous';
  font-weight: 400;
  font-size: 32px;
  line-height: 144%;
  text-transform: uppercase;
  text-align: center;
  color: #000000;
  margin-bottom: 20px;
}


.mainTitle span{
background: linear-gradient(43deg, #0db3e1 0%, #21e9cd 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.wrapper{
    width: 100%;
    overflow: hidden;
    max-width: 440px;
    margin: 0 auto;
}

@media(min-width: 800px){

  .mainText{
    font-size: 1.2vw;
  }
}

/* =========================
   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;
  font-family: 'SourceSans3-Medium';
}

textarea {
  resize: vertical;
}

/* =========================
   6. Links
   ========================= */
a {
  color: inherit;
  text-decoration: none;
  font-family: 'SourceSans3-Medium';
}

/* =========================
   7. Lists
   ========================= */
ul,
ol {
  list-style: none;
}

/* =========================
   8. Headings & text
   ========================= */
  h1{
    font-size: inherit;
    font-weight: inherit;
    font-family: 'Righteous';
  }
 h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  font-family: 'Righteous';
}


span{
  font-family: 'SourceSans3-Medium';
}

p {
  overflow-wrap: break-word;
  font-family: 'SourceSans3-Medium';
}

/* =========================
   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;
  }
}
