/* Reset margin and padding */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #141313;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
    text-align: center;
  }
  
  /* Style for the content container */
  .content {
    max-width: 600px;
    padding: 20px;
  }
  
  /* Gambar diperbesar */
  .center-image {
    width: 100%; /* Gambar memenuhi lebar container */
    max-width: 700px; /* Batas maksimal lebar gambar */
    height: auto; /* Tinggi otomatis agar proporsional */
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5); /* Tambahkan bayangan untuk estetika */
    border-radius: 10px; /* Sudut membulat */
  }
  
  /* Text styling */
  .caption {
    font-size: 16px;
    color: #f5eded;
  }
  