body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #181818;
    font-family: "Tauri", serif;
  font-weight: 400;
  font-style: normal;
 
}


.simple-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #4CAF50;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo h1 {
    margin: 0;
    font-size: 1.5em;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: white;
    font-size: 1em;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: #45a049;
}

nav a.active {
    background-color: #388E3C;
    font-weight: bold;
}
.jumbotron {
    padding: 200px;
    background: linear-gradient(green,hwb(120 24% 9%));
}
.jumbotron h1 {
    color: white;
}
.html {
    width: 250px;
    height: 250px;
    background:linear-gradient(green,hwb(120 24% 9%));
    margin: 100px;
    border-radius: 25px;
    text-align: center;
}
.html p {
    color: white;
    margin: 20px;
    margin-top: 20px;
}

.button {
    --green: #1BFD9C;
    font-size: 15px;
    padding: 0.7em 2.7em;
    letter-spacing: 0.06em;
    position: relative;
    font-family: inherit;
    border-radius: 0.6em;
    overflow: hidden;
    transition: all 0.3s;
    line-height: 1.4em;
    border: 2px solid var(--green);
    background: linear-gradient(to right, rgba(27, 253, 156, 0.1) 1%, transparent 40%,transparent 60% , rgba(27, 253, 156, 0.1) 100%);
    color: var(--green);
    box-shadow: inset 0 0 10px rgba(27, 253, 156, 0.4), 0 0 9px 3px rgba(27, 253, 156, 0.1);
  }
  
  .button:hover {
    color: #82ffc9;
    box-shadow: inset 0 0 10px rgba(27, 253, 156, 0.6), 0 0 9px 3px rgba(27, 253, 156, 0.2);
  }
  
  .button:before {
    content: "";
    position: absolute;
    left: -4em;
    width: 4em;
    height: 100%;
    top: 0;
    transition: transform .4s ease-in-out;
    background: linear-gradient(to right, transparent 1%, rgba(27, 253, 156, 0.1) 40%,rgba(27, 253, 156, 0.1) 60% , transparent 100%);
  }
  
  .button:hover:before {
    transform: translateX(15em);
  }
.container{
    justify-content: space-evenly;
    display: flex;
}
h1 {
    color: white;
}
.snap{
    width: 300px;
}
.html2 {
    text-align: center;
    background: #ffc60c;
    margin: 20px;
    border-radius: 20px;
    color: white;
}
.body{
    background-color: white;
    display: flex;
    flex-direction: row; /* Pastikan elemen sejajar ke samping */
    gap: 10px;
}

span {
    color: hsl(0, 0%, 61%);
}
.css {
    color: white;
    text-align: center;
    padding: 200px;
    background-color: #1BFD9C;
    display: inline-block;
}
.button {
    border: none;
    outline: none;
    background-color: #6c5ce7;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    border-radius: 5px;
    transition: all ease 0.1s;
    box-shadow: 0px 5px 0px 0px #a29bfe;
  }
  
  .button:active {
    transform: translateY(5px);
    box-shadow: 0px 0px 0px 0px #a29bfe;
  }


  /* contoh */

a {
    margin: 20px;

}
.menu-toggle {
    display: none; 
    background-color: transparent;
    color: white;
    font-size: 30px;
    border: none;
    cursor: pointer;
  }


@media (max-width:600px) {
    *{
        font-size: 10px;
    }

    img {
        width: 200px;
    }
    .container {
        display: block;
    }
    .jumbotron {
        padding: 100px;
    }
    .menu-toggle {
        display: block;
    }
    .css {
        padding: 80px;
    }
    .html {
        margin-left: 50px;
    }
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
  }
  
  nav ul li {
    margin: 0 15px;
  }
  
  nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
  }
  
  nav ul li a:hover {
    color: #f1f1f1;
  }
  
  /* Tombol menu untuk mobile */
  .menu-toggle {
    display: none; 
    background-color: transparent;
    color: white;
    font-size: 30px;
    border: none;
    cursor: pointer;
  }
  
  /* Responsif: Menyesuaikan untuk layar lebih kecil */
  @media (max-width: 768px) {
    .menu-toggle {
      display: block; /* Menampilkan tombol menu pada layar kecil */
    }
  
    nav ul {
      display: none; /* Menyembunyikan daftar menu pada awalnya */
      flex-direction: column; /* Mengubah menjadi kolom pada layar kecil */
      align-items: center;
      width: 100%;
    }
  
    nav ul li {
      margin: 10px 0; /* Memberikan jarak antar elemen li */
    }
  
    nav ul li a {
      font-size: 18px;
    }
  
    nav ul.active {
      display: flex; /* Menampilkan menu ketika tombol diklik */
    }
  }
footer {
  padding: 20px;
  text-align: center;
  color: #fff;
  background-color: #27bb33;
  
}






/* conact  */


.body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.container1 {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  width: 300px;
}

h2 {
  text-align: center;
  color: #333;
}

label {
  font-weight: bold;
  display: block;
  margin-top: 10px;
}

input, textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.b {
  width: 100%;
  background: blue;
  color: white;
  border: none;
  padding: 10px;
  margin-top: 15px;
  cursor: pointer;
  border-radius: 4px;
}

.b:hover {
  background: darkblue;
}
