body {
  margin: 0;
  background-color: #121212;
  overflow: hidden;
}

.skeleton-loader {
  display: flex;
  flex-direction: column;
  height: 100vh;
  padding: 24px;
  box-sizing: border-box;
  animation: sk-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes sk-pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .4;
  }
}

.sk-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
}

.sk-logo {
  display: inline-block;
  width: 120px;
  height: 32px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: transparent;
  text-decoration: none;
  user-select: none;
  overflow: hidden;
}

.sk-links {
  display: flex;
  gap: 24px;
}

.sk-link {
  width: 70px;
  height: 20px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  display: none;
  color: transparent;
  text-decoration: none;
  user-select: none;
  overflow: hidden;
}

@media(min-width: 768px) {
  .sk-link {
    display: block;
  }
}

.sk-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.sk-tag {
  display: inline-block;
  width: 220px;
  height: 32px;
  background: rgba(247, 127, 0, 0.15);
  border-radius: 20px;
  margin-bottom: 48px;
  color: transparent;
  user-select: none;
  overflow: hidden;
}

.sk-title-wrapper {
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sk-title {
  display: block;
  width: 80%;
  max-width: 700px;
  height: 70px;
  background: rgba(214, 40, 40, 0.2);
  border-radius: 16px;
  margin-bottom: 24px;
  color: transparent;
  user-select: none;
  overflow: hidden;
}

.sk-title-2 {
  display: block;
  width: 60%;
  max-width: 500px;
  height: 70px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  margin-bottom: 48px;
  color: transparent;
  user-select: none;
  overflow: hidden;
}

.sk-desc {
  display: block;
  width: 70%;
  max-width: 600px;
  height: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 16px;
  color: transparent;
  user-select: none;
  overflow: hidden;
}

.sk-desc-2 {
  display: block;
  width: 50%;
  max-width: 400px;
  height: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 64px;
  color: transparent;
  user-select: none;
  overflow: hidden;
}

.sk-btn {
  display: block;
  width: 240px;
  height: 64px;
  background: rgba(247, 127, 0, 0.4);
  border-radius: 40px;
  color: transparent;
  text-decoration: none;
  user-select: none;
  overflow: hidden;
}

/* Screen-reader only style for crawlable semantic SEO paragraphs */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
