:root {
  --font-pri: "Poppins", sans-serif;
  --font-sec: "Rubik Bubbles", cursive;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
  width: 100%;
}

body {
  width: 100%;
  min-height: 100vh;
  background: rgb(2, 0, 36);
  background: linear-gradient(90deg, rgb(2, 0, 36) 0%, rgb(9, 9, 121) 35%, rgb(0, 212, 255) 100%);
  color: white;
  font-family: var(--font-pri);
}

main {
  position: relative;
  height: 100%;
  width: 100%;
  text-align: center;
}
main h1 {
  font-family: var(--font-sec);
  font-size: 3rem;
}
main button {
  font-family: var(--font-pri);
  font-size: 1rem;
  padding: 0.5rem 1rem;
  font-weight: bold;
  border-radius: 1rem;
  border: 2px solid transparent;
  outline: none;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
main button:hover {
  border-color: white;
  background-color: transparent;
  color: white;
}
main section {
  width: 100%;
  height: 100vh;
}
main section.intro-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 3rem;
  padding: 2rem 5%;
}
main section.select-pack-section {
  background-color: rgb(2, 0, 36);
  padding: 2rem 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
main section.select-pack-section h2 {
  margin-bottom: 2rem;
}
main section.select-pack-section .cards {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  flex-wrap: wrap;
}
main section.select-pack-section .cards .card {
  background-color: rgb(2, 9, 121);
  border-radius: 1rem;
  padding: 1rem;
  flex-grow: 1;
}
main section.hosted-domains-section {
  background-color: rgb(9, 9, 121);
  padding: 2rem 5%;
}

footer {
  bottom: 0;
  padding: 1rem 5%;
  display: flex;
  background-color: #fff;
  width: 100%;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  gap: 0.3rem;
  font-weight: bold;
  color: rgb(9, 9, 121);
}/*# sourceMappingURL=main.css.map */