 @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

html,
body {
  padding: 0;
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;

}

a {
  color: inherit;
  text-decoration: none;
}

* {
  box-sizing: border-box;
}

  
body {
    background-image: url('../img/background-newloopb.png');
    background-repeat: repeat;
    animation: gerak 30s linear infinite;
    background-size: cover;
    
  }
  
  @keyframes gerak {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: 100% 0;
    }
  }
  
  

  .footer {
    display: flex;
    flex: 1;
    padding: 2rem 0;
    border-top: 1px solid #eaeaea;
    justify-content: center;
    align-items: center;
  }
  
  .footer a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
  }
  
  .title a {
    color: #0070f3;
    text-decoration: none;
  }
  
  .title a:hover,
  .title a:focus,
  .title a:active {
    text-decoration: underline;
  }
  
  .title {
    margin: 0;
    line-height: 1.15;
    font-size: 4rem;
  }
  
  .title,
  .description {
    text-align: center;
  }
  
  .description {
    margin: 4rem 0;
    line-height: 1.5;
    font-size: 1.5rem;
  }

  .card-cos {
    padding: 1.2rem;
    color: inherit;
    text-decoration: none;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    transition: color 0.15s ease, border-color 0.15s ease;
    background-color: white;
    width: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  
  @media (max-width: 768px) {
    .card-cos {
      margin: 1rem;
      width: 100%;
    }
  }
  
  
  .card-cos:hover,
  .card-cos:focus,
  .card-cos:active {
    color: #0070f3;
    background: linear-gradient(to left, #5D87FF, #7DB7FF);
  }
  
  .card h2 {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
  }
  
  .card p {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.5;
  }
  
  .logo-landing{
    width: 40px;
  }
  .logo-landing2{
    width: 80px;
  }
  .logo-landing3{
    width: 50px;
  }
  /* .logo {
    width: 25%;
  }
  .logo1 {
    width: 7%;
  }
  .logo2 {
    width: 35%;
  } */
  .fs-cos{
    font-size: 0.9rem;
    font-weight: 500;
  }

  .btn-cos-biru{
    background-color: #dbeafe;
    color: #1e3a8a;
  }

  
  @media (max-width: 600px) {
    .grid {
      width: 100%;
      flex-direction: column;
    }
    .background{
      height: auto;
      padding-bottom: 30px;
    }
    .logo, .logo1, .logo2{
      width: 80px;
    }
    .card-cos {
      width: 100%;
      margin: 1rem;
    }
  }
  
  
  @media (prefers-color-scheme: dark) {
    .card,
    .footer {
      border-color: #222;
    }
    .code {
      background: #111;
    }
    .logo img {
      filter: invert(1);
    }
  } 