* {
  box-sizing: border-box;
}
:root {
  --primary-color: #4f9bff;
}
.dgtsky {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  font-family: DM Sans;
}
.dgtsky-bg {
  position: fixed;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url("/img/bg.avif") no-repeat;
  background-size: cover;
}
.dgtsky-bg-black {
  position: fixed;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
}
.dgtsky-container-wrapp {
  position: relative;
  padding: 0 16px;
}
.dgtsky-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 448px;
}
.container-header {
  margin-bottom: 48px;
}
.container-h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--primary-color);
  margin: 0 0 1rem;
}
.container-text {
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: #fff;
  margin: 0;
}
.dgtsky-card {
  width: 100%;
  height: max-content;
  padding: 2rem;
  margin-bottom: 3rem;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 0.5rem;
  border: 2px solid var(--primary-color);
}
.dgtsky-card-text {
  margin: 0 0 1.5rem;
  color: #fff;
}
.dgtsky-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 174px;
  max-width: fit-content;
  height: 48px;
  padding: 0.75rem 2rem;
  margin: 0 auto;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  background: var(--primary-color);
  transition-duration: 300ms;
  border-radius: 9999px;
  transform: scale(1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.dgtsky-card-btn:hover {
  transform: scale(1.05);
}
.dgtsky-bottom-text {
  color: #fff;
  opacity: 0.7;
}
