body {
  background-color: #151515;
  font-family: "Libre Baskerville", serif;
  font-size: 16px;
  color: #b5b4b4;
  max-width: 100%;
}

textarea {
  border-radius: 15px;
  border: 2px solid darkgray;
  outline: none;
  box-sizing: border-box;
  width: 100%;
  background-color: white;
  margin-bottom: 4%;
  font-family: "Libre Baskerville", serif;
  font-weight: bold;
  font-size: 15px;
}

input[type=button],
input[type=submit],
input[type=reset] {
  border: 2px solid #FF0000;
  background-image: linear-gradient(45deg, #ff8a00, #e52e71);
  border-radius: 25px;
  padding: 10px;
  font-size: 15px;
  font-family: "Libre Baskerville", serif;
  font-weight: bold;
  color: white;
  width: 50%;
}

input[type=text] {
  border: 2px solid darkgray;
  margin-bottom: 3px;
  background-color: white;
  border-radius: 5px;
  font-family: "Libre Baskerville", serif;
  font-weight: bold;
  font-size: 15px;
}

select {
  padding: 0;
  margin-top: 2px;
  margin-bottom: 3px;
  font-weight: bold;
  font-family: "Libre Baskerville", serif;
  font-size: 15px;
  color: #52a1b6;
  border: 2px solid darkgray;
  background-color: white;
}

a {
  text-decoration: none;
  color: darkgray;
  background-color: transparent;
}

a:hover {
  background-color: white;
  border-radius: 5px;
}

a:active,
a:visited {
  color: silver;
  text-decoration: italic;
}

.foot {
  margin: 0;
  padding: 3px;
  text-align: center;
  font-weight: normal;
  color: #b5b4b4;
  font-size: 14px;
  border: 1px solid #333;
  border-radius: 2px;
}

.diva {
  padding: 3px;
  color: black;
  margin: 0;
  box-shadow: inset 0 0 0 2px #151515;
  background-image: repeating-linear-gradient(#000, #292929);
  border-radius: 10px;
}

.divb {
  font-size: 25px;
  display: block;
  width: calc(100% + 5px);
  height: 50px;
  line-height: 50px;
  text-align: center;
  margin: 0 -2px 35px -2px;
  background: linear-gradient(#444, #000);
  color: #111;
  position: relative;
  text-shadow: 0px 1px 1px #555;
  top: 20px;
}

.divb:before,
.divb:after {
  content: "";
  position: absolute;
}

.divb:before {
  height: 0;
  width: 0;
  bottom: -10px;
  left: 0;
  border-top: 10px solid #555;
  border-left: 10px solid transparent;
}

.divb:after {
  height: 0;
  width: 0;
  bottom: -10px;
  right: 0;
  border-top: 10px solid #555;
  border-right: 10px solid transparent;
}

.bw {
  background-image: repeating-linear-gradient(#272727 10%, #383838 20%, #252525 30%);
  border-radius: 10px;
}

.tb {
  border: 1px solid #333;
  padding: 2px;
  /* Tambahkan nilai width jika perlu */
}

.tb2 {
  background-image: linear-gradient(to right, #000, #444);
  border-radius: 5px;
}

.th1 {
  border: 3px solid black;
  padding: 2px;
  /* Tambahkan nilai width jika perlu */
}

.hr1 {
  border: 1px solid #333;
  border-radius: 0;
}

.hr2 {
  height: 3px;
  background-image: linear-gradient(to right, #000, #444);
  border: none;
  border-radius: 5px;
}
/* Sticky Header */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: linear-gradient(#222, #000);
  color: white;
  text-align: center;
  padding: 10px;
  border-bottom: 2px solid #444;
  font-size: 18px;
}

/* Sticky Footer */
.sticky-footer {
  position: sticky;
  bottom: 0;
  z-index: 999;
  background: linear-gradient(#000, #222);
  color: white;
  text-align: center;
  padding: 8px;
  border-top: 2px solid #444;
  font-size: 14px;
}