* {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}
.container {
  height: 100vh;
  width: 100%;
  background-image: url("https://i.postimg.cc/FzC0cJ3H/image.png");
  background-size: cover;
  background-position: center;
  position: center;
}
.logo {
  width: 60px;
  cursor: pointer;
}
.navbar {
  width: 88%;
  margin: auto;
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar ul li {
  list-style: none;
  display: inline-block;
  margin: 0 15px;
}
.navbar ul li a {
  text-decoration: none;
  color: #5f5f5f;
  font-size: 15px;
}
.content {
  width: 100%;
  position: absolute;
  top: 30%;
}
.left-col {
  margin-left: 6%;
}
.left-col h1 {
  font-size: 90px;
  color: #fff;
  line-height: 110px;
  float: left;
}
.right-col {
  float: right;
  margin-right: 6%;
  margin-top: 120px;
  display: flex;
  align-items: center;
}
.right-col p {
  font-size: 18px;
  color: #5f5f5f;
  font-weight: 400;
  margin-right: 15px;
}
#icon {
  width: 80px;
  cursor: pointer;
}
#icon::before {
  transform: scaleX(1);
  transform-origin: bottom right;
}
#icon:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
#icon::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0 0 0 0;
  background: hsl(200 100% 80%);
  z-index: -1;
  transition: transform 0.3s ease;
}
