@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: "Poppins", sans-serif;
  height: 100vh;
  width: 100%;
  font-size: 18px;
  background-image: url("/No-Mans-Sky-4-K-Wallpaper-700x394.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.8776);
  background-blend-mode: darken;
  background-position: center;
}

header {
  display: flex;
  justify-content: space-between;
  margin: 0.5rem 2rem;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-nav-toggle {
  display: none;
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
}
nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
nav ul li {
  padding: 1rem;
  list-style: none;
  position: relative;
}
nav ul li a {
  color: #d8d8d8;
  text-decoration: none;
  font-size: 0.9rem;
}
nav ul li a:hover {
  color: #8e8e8e;
}
nav .dropdown-menu {
  position: absolute;
  background-color: #333;
  transition: transform 0.5s ease-in-out;
  display: none;
  top: 100%;
  left: 0;
  z-index: 10000;
}
nav .dropdown-menu ul {
  display: block;
  margin: 0.5rem;
}
nav .dropdown-menu ul li {
  width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}
nav .dropdown-menu ul li:hover {
  background-color: rgb(133, 133, 133);
}
nav .dropdown-menu ul li a:hover {
  color: #fff;
}
nav .dropdown-menu a {
  color: #fff;
}
nav .dropdown:hover .dropdown-menu {
  display: block;
}
nav button {
  background-color: rgb(152, 39, 166);
  padding: 0.4rem 1rem;
  color: #f5f5f5;
  border: none;
  border-radius: 7px;
  font-size: 1rem;
  margin-left: 0.3rem;
  margin-right: 1rem;
  cursor: pointer;
}
nav button:hover {
  background-color: transparent;
  border: 1px solid rgb(152, 39, 166);
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 4rem;
}
.hero h1 {
  font-size: 6rem;
  line-height: 79px;
  font-weight: 700;
  padding: 1rem;
}
.hero .sub {
  font-weight: 400;
  line-height: 26px;
  padding: 0 190px;
  text-align: center;
  font-size: 0.9em;
  color: #dedede;
  margin: 1.5rem 0;
}
.hero button {
  background-color: transparent;
  padding: 0.5rem 1rem;
  color: #f5f5f5;
  border: 1px solid rgb(152, 39, 166);
  border-radius: 15px;
  font-size: 1rem;
  cursor: pointer;
  margin: 1rem 0 0 0;
  position: relative;
  z-index: 1000;
}
.hero button::after {
  position: absolute;
  inset: 0 0 0 0;
  content: "";
  background-color: rgb(152, 39, 166);
  -webkit-clip-path: circle(0 at 0 0);
          clip-path: circle(0 at 0 0);
  border-radius: 10px;
  transition: -webkit-clip-path 0.5s ease-in-out;
  transition: clip-path 0.5s ease-in-out;
  transition: clip-path 0.5s ease-in-out, -webkit-clip-path 0.5s ease-in-out;
  z-index: -1;
}
.hero button:hover::after {
  border: none;
  -webkit-clip-path: circle(150px at 0 100%);
          clip-path: circle(150px at 0 100%);
}
.hero .paragraph-2 {
  font-size: 0.7rem;
  color: #ccc;
  margin-top: 0.7rem;
  margin-bottom: 4rem;
}
.hero .paragraph-2 a {
  color: #f5f5f5;
  padding-left: 0.2rem;
}
.hero span {
  color: rgb(134, 134, 134);
  font-size: 0.7rem;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 1rem;
  margin-top: 3rem;
}
.logo img {
  margin: 0 0.5rem;
  opacity: 0.6;
  width: 100px;
}
.logo .twitter {
  width: 55px;
}
.logo .make-big {
  width: 150px;
}

@media (max-width: 57em) {
  header {
    padding: 0.5rem;
  }
  .mobile-nav-toggle {
    cursor: pointer;
    z-index: 10000;
    display: block;
  }
  nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 40%;
    transform: translateX(100%);
    flex-direction: column;
    background-color: #070a24;
    z-index: 9990;
    height: 100vh;
    transition: transform 0.5s ease;
  }
  nav.active {
    transform: translateX(0);
  }
  nav button {
    margin-top: 0.5rem 0;
    margin-left: 1rem;
  }
  nav ul {
    flex-direction: column;
  }
  .hero h1 {
    font-size: 4rem;
  }
  .hero .sub {
    padding: 0 2rem;
  }
}
@media (max-width: 45em) {
  body {
    height: 115vh;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero .sub {
    padding: 0 1rem;
    font-size: 0.7rem;
  }
  .hero button {
    width: 50%;
  }
  .hero button:hover::after {
    border: none;
    -webkit-clip-path: circle(300px at 0 100%);
            clip-path: circle(300px at 0 100%);
  }
  nav button {
    margin-top: 0.5rem 0;
    margin-left: 1rem;
  }
  .logo {
    margin-top: 3rem;
  }
}/*# sourceMappingURL=style.css.map */