@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
* {
  box-sizing: border-box;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  z-index: 1;
  scrollbar-width: 10%;
  scrollbar-color: #8f54a0 #fff;
}
*::-webkit-scrollbar {
  width: 5px;
}
*::-webkit-scrollbar-track {
  background: #32344a;
}
*::-webkit-scrollbar-thumb {
  background-color: #232433;
  border-radius: 5px;
}
*::-webkit-scrollbar-thumb:hover {
  background-color: #a9b1d6;
}

h2 {
  text-shadow: 0 0 5px #ccc;
}

h3 {
  text-shadow: 0 0 2px #ccc;
}

body {
  position: relative;
  margin: 0;
  padding: 0;
  background-color: #06080a;
  color: #a9b1d6;
}

.content {
  text-align: center;
}

#bg {
  z-index: -1;
  position: absolute;
  background-size: 50px 50px;
  background-image: linear-gradient(to right, #632cc8 1px, transparent 1px), linear-gradient(to bottom, #632cc8 1px, transparent 1px);
  opacity: 25%;
  width: 100%;
  height: 100%;
}

#bg2 {
  position: absolute;
  top: 0;
  z-index: -1;
  background-size: 100% 100%;
  background-image: linear-gradient(to bottom, transparent 25%, #06080a 35%);
  opacity: 80%;
  width: 100%;
  height: 100%;
}

.start {
  display: grid;
  align-items: center;
  justify-self: center;
  text-align: center;
  height: 100vh;
  width: 100%;
  animation: bob 3s ease-in-out infinite;
  background-image: radial-gradient(ellipse, #06080a 35%, transparent 75%);
}
.start #container {
  width: 100%;
  text-align: center;
}
.start h1 {
  z-index: 100;
  font-size: 100px;
  text-shadow: #7AA2F7 0 0 15px;
  color: #7AA2F7;
  line-height: 100px;
}
@keyframes bob {
  0% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
.start p {
  margin-bottom: 25px;
  font-size: 20px;
}

.scroll-indicator {
  width: 30px;
  height: 55px;
  border: 2px solid #7582bd;
  border-radius: 50px;
  position: absolute;
  background: transparent;
  outline: none;
  align-self: center;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  top: 94vh;
  opacity: 50%;
  transition: all 0.4s;
}
.scroll-indicator:hover {
  cursor: pointer;
  box-shadow: 0 0 15px #4a599c, inset 0 0 10px #4a599c;
  opacity: 100%;
}
.scroll-indicator:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #a9b1d6;
  margin: auto;
  left: 0;
  right: 0;
  top: 10px;
  border-radius: 50%;
  animation: anim 0.8s linear infinite;
}
@keyframes anim {
  0% {
    opacity: 1;
    top: 10px;
  }
  100% {
    opacity: 0;
    top: 35px;
    transform: scale(0.8);
  }
}

a {
  background: linear-gradient(to right, #632cc8, #0c4acc);
  margin-left: 10px;
  padding: 5px 50px;
  border: none;
  border-radius: 10px;
  color: #ddd;
  margin-top: 0.3rem;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  transition: all 0.35s;
  outline: none;
}
a:hover {
  color: #fff;
  box-shadow: 0 0 50px #000;
}
a:before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: linear-gradient(to right, #632cc8, #0c4acc);
  filter: blur(15px);
  opacity: var(0.7);
  transition: opacity 0.3s;
  border-radius: inherit;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#bento {
  padding-top: 225px;
  display: grid;
  grid-template-rows: 625px;
  grid-template-columns: 675px auto;
  gap: 25px;
}
#bento #why {
  grid-column: 1/2;
  grid-row: 1/2;
  display: grid;
  grid-template-rows: 300px 300px;
  grid-template-columns: 325px 325px;
  gap: 25px;
}
#bento #why .service {
  width: 325px;
  height: 300px;
  background-image: radial-gradient(ellipse, #040406, #0e0f15);
  padding: 25px;
  box-shadow: 0 0 10px #000;
  border-radius: 15px;
}
#bento #why .service img {
  width: 100px;
  margin-bottom: 20px;
}
#bento #why .service h3 {
  font-size: 25px;
  color: #ccc;
  text-shadow: 0 0 5px #ccc;
}
#bento #why .service span {
  overflow-wrap: break-word;
  width: inherit;
}
#bento .pricing {
  grid-column: 2;
  grid-row: 1;
  flex-direction: column;
  width: 375px;
  background-image: radial-gradient(ellipse, #040406, #0e0f15);
  padding: 25px;
  box-shadow: 0 0 10px #000;
  border-radius: 15px;
}
#bento .pricing #price {
  font-size: 35px;
  line-height: 0;
  padding-top: 15px;
  text-shadow: #a9b1d6 0 0 15px;
}
#bento .pricing #per {
  font-size: 15px;
  color: #6472b5;
  text-shadow: none;
  padding-left: 120px;
}
#bento .pricing #description {
  font-size: 20px;
}
#bento .pricing #star {
  font-size: 10px;
  width: 100%;
  padding-top: 55%;
}
#bento .pricing #checks .check:before {
  content: "✓ ";
  color: #9ECE6A;
  font-size: 20px;
}
#bento .pricing #payments {
  display: flex;
  flex-direction: row;
  padding-top: 50px;
  justify-content: center;
  font-size: 20px;
}
#bento .pricing #payments .method {
  display: inline-flex;
}
#bento .pricing #payments .method:not(:last-child):after {
  content: "a";
  color: transparent;
}

.media {
  width: 100%;
  display: block;
  padding-top: 250px;
}
.media h2 {
  font-size: 50px;
  color: #ccc;
  margin-bottom: 50px;
}
.media embed {
  display: inline-block;
}

.anim {
  transition: all 0.3s;
}
.anim:hover {
  transform: scale(0.98);
}

.footer {
  height: 2rem;
  background-color: #1a1b26;
  color: #7582bd;
  text-align: center;
  padding-top: 5px;
  margin-top: 100px;
}/*# sourceMappingURL=test.css.map */