* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  scroll-behavior: smooth;
}
i:hover {
  transform: scale(1.1);
  transition: 0.3s;
}

/* scrollbar */
::-webkit-scrollbar {
  height: 8px;
  width: 10px;
}

::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: transparent;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background-color: #f87171;
}

/* animation */
@-webkit-keyframes mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}

.main {
  background-image: url("../assets/images/main_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  overflow: hidden;
  box-shadow: 0px 10px 20px grey;
}
.home-container {
  box-shadow: 0px 10px 10px #b4b2b2;
  position: relative;
  margin-bottom: 10px;
  height: 100vh;
  width: 100%;
  background-image: linear-gradient(to right, #ffe8ec, #ffacb9);
}

.main-info {
  display: flex;
  height: 85%;
  padding: 30px;
  position: relative;

  margin-left: 30px;
}

@media screen and (max-width: 700px) {
  .main-info {
    margin-left: 0px !important;
  }
}
