<style>
    body {
      margin: 0;
      font-family: Arial, sans-serif;
      background-color: #f4f4f4;
      scroll-behavior: smooth;
      width: 1100px;
    }

    /* Container utama */
    .container {
      display: flex;
      align-items: flex-start;
      padding: 20px;
      min-height: 100vh;
width: 1100px;
    }

    /* Logo */
    .logo {
      width: 180px;
      text-align: center;
    }

    .logo img {
      width: 100%;
      height: auto;
    }

    /* Bagian kanan */
    .right-section {
      flex: 1;
      display: flex;
      flex-direction: column;
      margin-left: 20px;
    }

    /* Sosial media */
    .social-links {
      text-align: right;
      margin-bottom: 10px;
    }

    .social-links a {
      margin-left: 10px;
      text-decoration: none;
      color: #333;
      font-size: 18px;
    }

    /* Judul profil */
    .title {
      display: flex;
      align-items: center;
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 15px;
    }

    .title img {
      width: 100px;
      height: auto;
      margin-right: 10px;
      border-radius: 8px;
    }

    /* Menu */
    .menu {
      background-color: #47d1f8;
      padding: 10px;
      border-radius: 5px;
      margin-bottom: 20px;
    }

    .menu a {
      color: white;
      margin-right: 15px;
      text-decoration: none;
      font-weight: bold;
    }

    .menu a:hover {
      text-decoration: underline;
    }

    /* BERANDA (Galeri Karya) */
    .gallery-section {
      background-color: rgb(196, 241, 247);
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      margin-bottom: 20px;
    }

    .gallery-section h2 {
      color: #00bbff;
      margin-top: 0;
    }

    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 15px;
      margin-top: 15px;
    }

    .gallery img {
      width: 100%;
      height: 150px;
      object-fit: cover;
      border-radius: 8px;
      transition: transform 0.3s;
    }

    .gallery img:hover {
      transform: scale(1.05);
    }

    /* Tentang Saya */
    .about-section {
      background-color: white;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      margin-bottom: 20px;
    }

    .about-section h2 {
      color: #007bff;
    }

    .about-section p {
      line-height: 1.6;
      color: #333;
    }

    /* Kontak */
    .contact-section {
      background-color: white;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      max-width: 500px;
    }

    .contact-section h2 {
      color: #007bff;
    }

    .contact-section label {
      display: block;
      margin-bottom: 5px;
      font-weight: bold;
    }

    .contact-section input,
    .contact-section textarea {
      width: 100%;
      padding: 10px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 14px;
    }

    .contact-section button {
      background-color: #007bff;
      color: white;
      border: none;
      padding: 10px 15px;
      border-radius: 5px;
      font-size: 16px;
      cursor: pointer;
    }

    .contact-section button:hover {
      background-color: #0056b3;
    }
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "MV Boli", sans-serif;
}

body {
  background-color: #E0F7FA;
  color: #333;
  display: flex;
  justify-content: center;
  padding: 40px;
}

.containeraab {
  display: flex;
  max-width: 1000px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

/* Bagian 1 - Foto Profil */
.foto-profil {
  background-color: #CCF2F4;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.foto-profil img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
}

/* Bagian 2 - Info Dasar (dan bagian 3,4,5 di dalamnya) */
.info-dasar {
  flex: 1;
  padding: 30px;
}

.info-dasar h1 {
  font-size: 2em;
  color: #2c3e50;
}

.info-dasar h3 {
  color: #16a085;
  margin-bottom: 20px;
}

/* Bagian 3 - Pendidikan */
.pendidikan {
  margin-bottom: 20px;
}

.pendidikan h2 {
  color: #2c3e50;
  margin-bottom: 10px;
}

.pendidikan ul {
  list-style-type: square;
  padding-left: 20px;
}

/* Bagian 4 - Deskripsi */
.deskripsi {
  margin-bottom: 20px;
}

.deskripsi h2 {
  color: #2c3e50;
  margin-bottom: 10px;
}

/* Bagian 5 - Kontak */
.kontak h2 {
  color: #2c3e50;
  margin-bottom: 10px;
}

.kontak a {
  color: #16a085;
  text-decoration: none;
}

.kontak a:hover {
  text-decoration: underline;
}
.logo-ig {
    width: 40px;      
    height: auto;   
}



/* Responsif untuk layar kecil */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
  }

  .foto-profil {
    width: 100%;
  }

  .info-dasar {
    padding: 20px;
  }
}

  </style>