* {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.container {
  width: 100%;
  height: 100vh;
  background: radial-gradient(#768aff, #0f228a);
  color: #fff;
  position: relative;
}

.logo {
  margin-left: 7%;
  height: 90px;
}

.content {
  max-width: 600px;
  margin-left: 15%;
  margin-top: 10%;
  position: relative;
}

.container h1 {
  font-size: 70px;
  margin: 10px 0;
  font-weight: 100;
  text-transform: uppercase;
}

.container h2 {
  font-size: 80px;
  margin: 10px 0;
  opacity: 0.6;
  text-transform: uppercase;
}

.content p {
  font-size: 12px;
  margin: 18px 0;
  color: #ccc;
  line-height: 18px;
}

.link {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  margin: 20px 0;
  position: relative;
}

.link::after {
  content: "";
  background: #fff;
  height: 1px;
  width: 60px;
  position: absolute;
  top: 50%;
  left: 110%;
  transform: translateY(-50%);
  transition: 0.5s;
}

.link:hover::after {
  width: 100px;
}

span {
  position: absolute;
  left: -150px;
  top: 200px;
  transform: rotate(-90deg);
  letter-spacing: 2px;
  opacity: 0.6;
}

span::after {
  content: "";
  background: #fff;
  height: 2px;
  width: 60px;
  position: absolute;
  top: 50%;
  left: 110%;
  transform: translateY(-50%);
}

.featured-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  max-width: 680px;
}
.search-img {
  position: absolute;
  left: 9%;
  bottom: 8%;
  width: 21px;
  opacity: 0.5;
}
