* {
  margin: 0;
  padding: 0;
}

.container {
  height: 100vh;
  width: 100%;
  background-image: url("images/background.png");
  background-position: center;
  background-size: cover;
  padding-left: 5%;
  padding-right: 5%;
  box-sizing: border-box;
  position: relative;
}

.navbar {
  width: 100%;
  height: 15vh;
  margin: auto;
  display: flex;
  align-items: center;
}

.logo {
  width: 160px;
  cursor: pointer;
}

.cart {
  width: 40px;
  cursor: pointer;
}

nav {
  flex: 1;
  padding-left: 60px;
}

nav ul li {
  display: inline-block;
  list-style: none;
  margin: 0px 20px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
}

.content h1 {
  font-size: 60px;
  font-weight: 100;
  margin-top: 24px;
  margin-bottom: 15px;
  color: #232d60;
}
.content p {
  font-size: 20px;
  color: #6a7199;
}

.content {
  margin-left: 10%;
  margin-top: 10%;
}

.content .btn {
  display: inline-block;
  background: linear-gradient(45deg, #87adfe, #ff77cd);
  border-radius: 6px;
  padding: 10px 20px;
  box-sizing: border-box;
  text-decoration: none;
  color: #fff;
  box-shadow: 3px 8px 22px rgba(94, 28, 68, 0.15);
}

.arrow-icons {
  margin-top: 40px;
  display: flex;
}

.arrow-icons img {
  width: 40px;
  margin-right: 25px;
}

.feature-img {
  height: 90%;
  position: absolute;
  bottom: 0;
  right: 160px;
}

.social-links {
  transform: rotate(-90deg);
  position: absolute;
  bottom: 180px;
}

.social-links a {
  text-decoration: none;
  color: #6a7199;
  padding-right: 20px;
  font-size: 14px;
}

/* For screens smaller than 768px */
@media (max-width: 767px) {
    .content h1 {
      font-size: 40px;
    }
  
    .content p {
      font-size: 16px;
    }
  
    .content {
      margin-left: 0;
      margin-top: 20%;
      text-align: center;
    }
  
    .content .btn {
      margin-top: 30px;
    }
  
    .feature-img {
      height: 40%;
      position: absolute;
      bottom: -60px;
      left: 50%;
      transform: translateX(-50%);
    }
  
    .social-links {
      transform: rotate(0);
      position: relative;
      bottom: auto;
      text-align: center;
      margin-top: 50px;
    }
  
    .social-links a {
      padding: 0 10px;
    }
  }
  
  /* For screens between 768px and 1200px */
  @media (min-width: 768px) and (max-width: 1200px) {
    .content h1 {
      font-size: 50px;
    }
  
    .content p {
      font-size: 18px;
    }
  
    .content {
      margin-left: 0;
      margin-top: 15%;
      text-align: center;
    }
  
    .feature-img {
      height: 50%;
      position: absolute;
      bottom: 0;
      right: 0;
    }
  
    .social-links {
      transform: rotate(0);
      position: absolute;
      bottom: 40px;
      text-align: center;
      width: 100%;
    }
  
    .social-links a {
      padding: 0 20px;
    }
  }
  