* {
  box-sizing: border-box;
}

html {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

a {
  outline: none;
  border: none;
}
a.button {
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  width: 100%;
  margin: 0px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 12px 0px;
  padding: 8px 18px;
  min-height: 48px;
  background-color: #CC00CC;
  color: rgb(255, 255, 255);
  border-radius: 4px;
  text-align: center;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 2px;
}
a.finish {
  padding: 10px;
  font-size: 28px;
}

a {
  text-decoration: none;
  color: inherit;
}

li {
  list-style: none;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-weight: normal;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  max-height: calc(var(--vh, 1vh) * 100);
  color: rgb(255, 255, 255);
}

.picture {
  position: absolute;
  z-index: -1;
  display: flex;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.picture::before {
  position: absolute;
  content: "";
  background-color: rgba(0, 0, 0, 0.9);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.first {
  overflow: hidden;
  height: 100%;
}

.time {
  fill: white;
}

.timer {
  text-align: center;
  font-size: 14px;
  line-height: 20px;
  margin-top: 20px;
}

.main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 25px;
  overflow: hidden;
  height: calc(var(--vh, 1vh) * 100);
}
.main__inner {
  overflow: auto;
  height: 100%;
}
.main__picture {
  display: block;
  margin: 0px auto 25px;
  max-width: 220px;
  width: 100%;
  height: 37vh;
}
.main__picture img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  margin: 0px auto;
}
.main__picture.finish__picture img {
  padding-bottom: 40px;
}
.main__text {
  text-align: center;
  font-weight: normal;
  line-height: 24px;
  max-width: 700px;
}
@media (max-width: 767px) {
  .main__text {
    font-size: calc(22px + 32.2 * (100vw - 320px) / 1280);
  }
}
@media (min-width: 768px) {
  .main__text {
    font-size: calc(22px + 6 * 100vw / 1280);
  }
}
.main__text.finish__text {
  margin-bottom: 20px;
}
.main__text p {
  padding-bottom: 20px;
}
.main__text p.small {
  font-size: 18px;
  line-height: 22px;
}
.main__footer {
  position: fixed;
  width: 100%;
  height: 75px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  bottom: 0;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: rgba(255, 255, 255, 0.2) 0px -1px;
}
.main__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
}
.main__button-link {
  display: flex;
  justify-content: center;
  width: 100%;
}
.main__button button {
  width: 100%;
}
.main__button-text-start {
  font-size: 24px;
  line-height: 28px;
  padding: 5px 35px;
}

.desc {
  display: none;
}

.cta {
  width: 100%;
  display: flex;
  justify-content: center;
  text-decoration: none;
  align-items: center;
  transition: 0.5s;
}

.cta:focus {
  outline: none;
}

.cta span:nth-child(2) {
  transition: 0.5s;
  margin-right: 45px;
}

/* span {
    transform: skewX(15deg);
} */
span:nth-child(2) {
  width: 20px;
  margin-left: 30px;
  position: relative;
  top: 12%;
}

/**************SVG****************/
path.one {
  transition: 0.4s;
  transform: translateX(-60%);
}

path.two {
  transition: 0.5s;
  transform: translateX(-30%);
}

.cta path.three {
  animation: color_anim 1s infinite 0.2s;
}

.cta path.one {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.6s;
}

.cta path.two {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.4s;
}

@keyframes color_anim {
  0% {
    fill: white;
  }
  50% {
    fill: #5a085a;
  }
  100% {
    fill: white;
  }
}
@media (min-width: 768px) {
  .atuin-btn:after,
  .atuin-btn:before {
    transition: all 280ms ease-in-out;
  }
  .main__footer {
    margin-top: 20px;
  }
  .main__text {
    line-height: 32px;
    padding-bottom: 18px;
  }
  .main__text p.small {
    font-size: 20px;
    line-height: 28px;
  }
  .main__button {
    width: auto;
    margin-top: 14px;
  }
  .main__picture {
    max-width: 300px;
    height: 43vh;
  }
  .main__picture img {
    -o-object-position: top;
       object-position: top;
  }
  .main__picture.finish__picture img {
    padding-bottom: 30px;
    -o-object-position: top;
       object-position: top;
  }
  a.button {
    font-size: 34px;
    width: -moz-fit-content;
    width: fit-content;
    padding: 13px 40px;
  }
  .desc {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */