* {
    font-family: "Poppins", sans-serif;
}

.text-black {
  color: black;
}

.text-blue {
  color: #4569FA;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #333;
  }

  .hero-section {
    text-align: center;
    padding: 0 2rem;
    height: 95vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    overflow-x: hidden;
  }
  
  .hero-section h1 {
    color: #4569FA;
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .hero-section .left {
    align-self: self-end;
    display: flex;
    width: 50%;
  }

  .hero-section .right {
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 50%;
  }
  
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #1C2A64;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    height: 5vh;
    color: #ffffff;
  }
  
  .logo {
    width: 50px;
    height: 50px;
    margin-right: 1rem;
  }
  
  .title {
    font-size: 1.5rem;
    text-decoration: none;
    color: white;
  }
  
  .menu-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
    width: 100%;
    gap: 1rem;
    padding: 2rem;
  }
  
  .menu-card {
    background-color: #4E71FF;
    color: white;
    padding: 1rem;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s;
    width: 18rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .menu-card:hover {
    background-color: #8DD8FF;
    color: #000;
  }

  .menu-materi{
    color: #4569FA;
    padding: 2rem;
    overflow-x: hidden;
  }

  .content-materi{
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem;
  }

  .text-materi {
    text-align: justify;
    max-width: 50%;
  }

  .img-materi {
    width: 100%;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  @media (max-width: 768px) {
    .menu-container {
      padding: 1rem;
    }
  
    .title {
      font-size: 1.2rem;
    }
  }
  