:root {
  --primary: #fff;
  --primary-text: #000;
  --secondary: #b5b5b5;
  --secondary-text: #aaa;
  --accent: #505050;
  --accent-text: #091823;
}
* {
  outline: none;
  text-decoration: none;
}
a {
  color: #091823;
}
a:hover {
  color: #c94506;
}
body {
  background-color: #091823;
}
.title {
  font-size: 2em;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  border: none;
}
.header {
  display: flex;
  border-bottom: solid 1px #e7eaec;
  padding: 8px;
}
[class*="btn-"] {
  border-radius: 100px;
  padding: 1em 2em;
  text-align: center;
  outline: none;
  font-weight: bold;
}
.btn-filled {
  background-color: #112f45;
  color: var(--primary);
}
.btn-action {
  background-color: #c94506;
  color: #fff;
}
.section-buy {
  text-align: center;
  padding: 2em;
}
.animate-charcter {
  text-transform: uppercase;
  background-image: linear-gradient(
    -225deg,
    #231557 0%,
    #44107a 29%,
    #ff1361 67%,
    #fff800 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
  font-size: 190px;
  margin: 2em auto 0 auto;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}
