:root{
    --bg-menu: #97fcea;
    --card-divisi-header: #00baba;
    --white: white;
    --bg-card: #040811;
    --main-cyan: #58C4B1;
    --button-line: #7df5df;
    --main-white: #ededed;
    --text-body: #ffff;
  }
  
  @font-face {
    font-family: "CustomFont";
    src: url('../asset/font/Satoshi-Variable.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
  }
  
  body {
    margin: 0;
    font-family: "CustomFont";
    /* background: #292929; */
    background:  #040811;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    
  }

.article-new {
    height: auto;
    display: flex;
    flex-direction: column; /* Menyusun elemen secara vertikal */
    justify-content: flex-start; /* Posisi di atas */
    align-items: flex-start; /* Posisi di kiri */
    padding: 80px; /* Jarak dari tepi kiri dan atas */
    margin-top: 13%;
  }
  
  .tulisan-article {
    font-size: 35px;
    color: var(--main-cyan);
    text-align: start;
    font-weight: 400;
  }
  
  .judul-article {
    font-size: 90px;
    color: white;
    text-align: start; /* Menambahkan text-align untuk memastikan teks terpusat */
    font-weight: 800;
    line-height: 1.2;
  }

  .isi-article {
    margin-top: 10px;
    margin-left: 5px;
    font-size: 25px;
    color: white;
    text-align: start;
    width: 75%; /* Menambahkan text-align untuk memastikan teks terpusat */
    /* font-weight: 800; */
  }

  .gambar-article {
    display: flex;
    justify-content: space-evenly;
    padding-top: 100px;
    padding-bottom: 100px;
    /* margin: 0 auto; */
    gap: 20px;

    background: var(--bg-card);
  
  }
  
  .gambar-article .column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center; /* Memusatkan gambar secara horizontal */
  }
  
  .gambar-article img {
    width: 100%; /* Lebar relatif */
    height: auto; /* Menjaga rasio aspek */
    object-fit: contain; /* Gambar tidak terpotong */
    border-radius: 10px; /* Border rounded */
    box-shadow: 1px rgba(0, 0, 0, 0.1); /* Bayangan default */
    transition: box-shadow 0.3s ease, filter 0.3s ease, transform 0.3s ease; /* Transisi halus */
  }

  .paragraph, .paragraph1, .paragraph2{
    color: white;
    font-size: 25px;
    margin-top: 10px;
  }

  .paragraph1, .paragraph2{
    margin-top: 30px;
  }

  @media (max-width: 1024px) { 
    .judul-article {
      font-size: 60px;
    }

    .isi-article{
      font-size: 20px;
    }

    .paragraph, .paragraph1, .paragraph2{
      font-size: 20px;
    }
  }


  