body{
    background-image: url(../image/landing_page/library-bg.jpg);
    height: 100vh;
    font-family: "Anek Latin", sans-serif;
    background-repeat: no-repeat;
}
:root{
    --text:#5A5A5A;
    --black:#191919;
    --white:#fff;
}
h3{
    font-size: 23px;
}
/* .landing{
    height: 100%;
    display: flex;
    align-items: center;
} */
.landing .logo {
    margin-bottom: 30px;
    margin-top: 50px;
}
.landing img{
    width: 200px;
   
}
.landing img.img-banner{
    animation: motion-blur 5s ease-in-out infinite;
}

@keyframes motion-blur {
    0%
    {
      left: 0;
    }
    50%
    {
      left: 250px;
    }
    55%
    {
      left: 250px;
      transform: scaleX(0.9);
    }

      100%
    {
      left: 0px;
      transform: scaleX(1) skewX(0deg);
    }
  }
.landing span{
    background: var(--white);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  padding: 10px 0px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  width: 250px;
  text-align: center;
  justify-content: center;
  margin-bottom: 10px;
}
.snippets p{
    text-align: start !important;
}
.landing span p{
    background: -webkit-linear-gradient(rgb(188, 12, 241), rgb(212, 4, 4));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 18px;
    margin: 0;
    font-weight: 400;
}
.landing h1{
    font-size: 75px;
    font-weight: 600;
    margin-bottom: 10px;
}
.landing p{
    color: var(--text);
  font-size: 18px;
  font-weight: 300;
  width: 472px;
  margin-bottom: 25px;
}
.landing ul {
    display: flex;
    gap: 25px;
    padding: 0;
    margin-bottom: 25px;
  }
.landing ul li {
    text-decoration: none;
    list-style: none;
    font-size: 18px;
    color: var(--text);
    font-weight: 400;
}

.landing ul li img {
    width: 25px;
    margin-right: 10px;
}
.primary-btn {
    background-color: var(--black);
    color: var(--white);
    padding: 13px 50px;
    font-size: 20px;
    font-weight: 500;
    border-radius: 35px;
}
.primary-btn:hover{
    background-color: #343434;
color: var(--white);
}
.snippets img{
    width: 60px;
  margin-right: 10px;
}
.snippets {
    margin-top: 50px;
  }
  .snippets p{
    width: auto;
  }

  @media (max-width: 1399.98px) { 
    .landing h1 {
        font-size: 68px;
   }
}
@media (max-width: 1199.98px) { 
    .landing h1 {
        font-size: 61px;
      }
}
@media (max-width: 991.98px) { 
    .landing h1 {
        text-align: center;   
    }
    .landing p {
        width: auto;
        text-align: center;
    }
    .landing ul {
        justify-content: center;
    }
    .landing .logo {
        margin-bottom: 80px;
      }
}
@media (max-width: 490.98px) { 
    .landing h1 {
        font-size: 40px;
      }
      .landing ul li {
        font-size: 14px;
      }
      .landing ul li img {
        width: 20px;
        margin-right: 7px;
      }
      .landing ul {
        display: flex;
        gap: 9px;
      }
}
