body {
  font-family: Arial, sans-serif, "Avenir Next", "Avenir";
  background-image: url(Danau\ malam.jpg); /* Ganti dengan nama file gambar dan format yang sesuai */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  margin: 0;
  padding: 0;
  overflow: auto;
}

header {
  background-color: #1e88eb;
  padding: 20px;
  text-align: center;
  display: inline;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

section {
  margin: 20px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
}

.cokiper {
  /*tulisan gerak*/
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-bounce span:nth-child(1) {
  animation: bounce 0.5s;
  display: inline-block;
}

.text-bounce span:nth-child(2) {
  animation: bounce 1s;
  display: inline-block;
}

.text-bounce span:nth-child(3) {
  animation: bounce 1.5s;
  display: inline-block;
}

.text-bounce span:nth-child(4) {
  animation: bounce 2s;
  display: inline-block;
}

@keyframes bounce {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  5% {
    opacity: 1;
  }
  50% {
    transform: translateY(50%);
    animation-timing-function: cubic-bezier(0.5, 0, 0, 0.1);
  }
  100% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0.2, 0, 0, 0);
  }
}

.jumbotron {
  font-size: 20px;
  padding: 30px;
  background-color: #00c8eb;
  text-align: center;
  color: white;
}

th,
td {
  border: 1px solid #142366;
  padding: 8px;
  text-align: center;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.hamburger {
  /*titik tiga*/
  position: fixed;
  top: 15px;
  left: 15px;
  z-index: 1000;
  cursor: pointer;
}

.line {
  width: 35px;
  height: 5px;
  background-color: #756f6f;
  margin: 6px 0;
  transition: 0.4s;
}

.menu {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  background-color: #111111;
  overflow-x: hidden;
  transition: 0.7s;
  padding-top: 60px;
}

.menu a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.menu a:hover {
  color: #f1f1f1;
}

.menu a:first-child {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 36px;
}

.open .line:nth-child(1) {
  transform: rotate(45deg);
  top: 15px;
}

.open .line:nth-child(2) {
  opacity: 0;
}

.open .line:nth-child(3) {
  transform: rotate(-45deg);
  top: 15px;
}

/* CSS untuk tampilan desktop */
.card {
  width: 300px; /* Sesuaikan dengan lebar card */
  margin: 20px;
}

.table-container {
  overflow-x: auto; /* Tambahkan scrollbar horizontal jika tabel melebihi lebar card */
}

/* CSS untuk tampilan seluler */
@media screen and (max-width: 1200px) {
  main {
    flex-flow: column nowrap;
  }
  main aside {
    align-self: center;
  }
}

@media screen and (max-width: 768px) {
  @media screen and (max-width: 768px) {
    nav ul {
      justify-content: center;
    }

    main aside {
      align-self: stretch;
    }
  }
}

.slider-container {
  width: 100%;
  overflow: hidden;
}

.carousel {
  display: flex;
  transition: transform 5s ease-in-out;
}

.card {
  width: 300px; /* Adjust card width as needed */
  margin-right: 20px; /* Space between cards, adjust as needed */
  box-shadow: 0 4px 8px rgb(49, 7, 146);
  overflow: hidden;
}

.card img {
  width: 100%;
  height: auto;
  display: block;
}

#slideshow {
  /*Gallery*/
  width: 300px;
  height: 200px;
  overflow: hidden;
  border: 0px solid #0a0a0a;
  margin: 0 auto;
  text-align: center;
  font-weight: bold;
}

#slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  width: 100%;
  flex: 0 0 auto;
}

:root {
  /*warna medsos*/
  --background: #060023;
  --instagram: #e4405f;
  --tiktok: #000000;
  --spotify: #1db954;
  --white: #ffffff;
}

.social-media-button {
  width: 3rem;
  height: 3rem;
  border: 2px solid var(--white);
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 20px;
}

.social-media-button img {
  width: 70%;
  height: auto;
}

.social-media-button:hover {
  border-color: var(--white);
}

.social-media-button:nth-child(1):hover {
  background-color: var(--instagram);
}

.social-media-button:nth-child(2):hover {
  background-color: var(--tiktok);
}

.social-media-button:nth-child(3):hover {
  background-color: var(--spotify);
}

.social-media-button:nth-child(1):hover {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d62491 60%,
    #285aeb 90%
  );
}

.social-media-button:nth-child(2):hover {
  background: radial-gradient(
    circle at 30% 107%,
    rgb(177, 16, 16),
    rgb(76, 76, 223),
    rgb(99, 60, 60),
    rgba(0, 0, 0, 0.5)
  );
}

.social-media-button:hover {
  transform: scale(1.2);
}

.social-media-button img {
  max-width: 100%;
  max-height: 100%;
  transition: transform 0.3s ease-out;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.menfes-icons {
  display: flex;
  justify-content: left;
  margin: 20px;
}

.menfes-icons a {
  margin: 0 10px;
  text-decoration: none;
}

.menfes-icons img {
  width: 70px; /* Sesuaikan ukuran gambar sesuai keinginan */
  height: auto;
}

#container {
  /*struktur*/
  display: flex;
  flex-direction: column;
  align-items: center;
}

#contaiker {
  display: flex;
  justify-content: center;
  align-items: center;
}

.box {
  width: 150px;
  height: 50px;
  background-color: #2484f1;
  border-radius: 100px;
  margin: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.task {
  position: absolute;
  top: -20px;
}

.branch {
  display: flex;
  flex-direction: column;
}

.left {
  margin-right: -10px;
}

.right {
  margin-left: -10px;
}

circle {
  fill: rgb(196, 20, 20);
}

svg {
  position: absolute;
}

.sammy-nowrap-2 {
  border-radius: 6px;
  background-color: aliceblue;
  border: 2px dashed gray;
  max-width: 70%;
  padding: 1em;
  margin-bottom: 0.4em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery img {
  width: 200px;
  margin: 10px;
  cursor: pointer;
}

.banner {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  backdrop-filter: blur(30px);
  box-shadow: 0px 0px 30px rgba(255, 255, 255, 0.37);
  border: 8px solid rgba(255, 255, 255, 0.18);
  padding: 10px;
  width: 80%;
  margin: 30px;
  height: 40px;
  border-radius: 100px;
}

.angka {
  background: linear-gradient(to right, #001aff, #ff00c3);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 40px;
  font-weight: bold;
}

.angkat {
  color: #001aff;
  font-size: 40px;
  font-weight: bold;
  text-shadow: 0 0 5px #ffffff, 0 0 10px #fff, 0 0 20px #ffffff,
    0 0 30px #e2d9e2, 0 0 40px #f3f2f3, 0 0 50px #e4dee4, 0 0 60px #ece1ec;
  animation: glow 1s ease-in-out infinite alternate;
}

.angkap {
  color: #ff00c3;
  font-size: 40px;
  font-weight: bold;
  text-shadow: 0 0 5px #ffffff, 0 0 10px #fff, 0 0 20px #ffffff,
    0 0 30px #e2d9e2, 0 0 40px #f3f2f3, 0 0 50px #e4dee4, 0 0 60px #ece1ec;
  animation: glow 1s ease-in-out infinite alternate;
}

footer {
  padding: 20px;
  text-align: left;
  font-weight: bolder;
  font-size: smaller;
  color: #b1a3a3;
  margin-top: 20px;
}

footer p {
  margin: 0;
}

.efek-text {
  /*efek di kalimat H2*/
  color: #ffffff;
  text-shadow: 0 0 5px #f1ecec, 0 0 10px #fff, 0 0 20px #5900ff,
    0 0 30px #0400ff, 0 0 40px #2f00ff, 0 0 50px #4c00ff, 0 0 60px #0400ff;
}

.lemper {
  display: inline;
  justify-content: space-around;
  align-items: center;
}

.bos {
  display: inline;
  justify-content: space-between;
  align-items: center;
  margin: 0px auto;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.bos.show {
  opacity: 1;
  transform: translateY(0);
}
