body {
  margin: 0;
  padding: 0;
  background: url(1.jpg);
  font-family: sans-serif;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}

header {
  position: absolute;
  background: #ffffff;
  top: 0;
  left: 0;
  padding: 0 100px;
  width: 100%;
  box-sizing: border-box;
}

header .logo {
  color: rgb(83, 83, 83);
  height: 60px;
  line-height: 60px;
  font-size: 24px;
  float: left;
  font-weight: bold;
}

header nav {
  float: right;
}

header nav ul {
  margin: 0;
  padding: 0;
  display: flex;
}

header nav ul li {
  list-style: none;
}

header nav ul li a {
  color: rgb(83, 83, 83);
  height: 60px;
  line-height: 60px;
  padding: 0 20px;
  text-decoration: none;
  display: block;
}

header nav ul li a:hover,
header nav ul li a.active {
  color: #ffffff;
  background-color: #aaaaaa;
}

.menu-toggle {
  color: rgb(94, 94, 94);
  float: right;
  line-height: 50px;
  font-size: 24px;
  cursor: pointer;
  display: none;
}

/* responsive */

@media (max-width: 650px) {
  header {
      padding: 0 20px;
  }

  .menu-toggle {
      display: block;
  }

  header nav {
      position: absolute;
      width: 100%;
      height: calc(100vh - 50px);
      background: #333;
      top: 50px;
      left: -100%;
      transition: 0.5s all;
  }

  header nav.active {
      left: 0;
  }

  header nav ul {
      display: block;
      text-align: center;
  }
  header nav ul li a {
      border-bottom: 1px solid rgba(0, 0, 0, 0.2);
      color: rgb(255, 255, 255);
  }
}

/* Style untuk section */
section {
    padding: 10px;
}

.chabout {
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
}


/* Style untuk portfolio */
.portfolio-item {
    display: inline-block;
    width: 30%;
    text-align: center;
    margin: 10px;
}

/* Style untuk tabel harga */
table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

/* Style untuk footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    position: static;
    bottom: 0;
    width: 100%;
}