  /* . (titik) berarti class ; #(pagar) berarti id */
.logo {
    max-width: 90px;
    height: auto;
  }


  .header-right {
    float: right;
  }


body {
  padding : 20px;
  background-color: #f2f2f2;
}

h1 {
  color: #333;
  padding-bottom: 10px;
}
h2 {
  color: #333;
  padding-bottom: 10px;
}

p {
  padding-bottom: 10px;
}

#myDiv {
  padding-bottom: 20px;
}

#teksPutih {
  color: white;
}

#teksUrl {
  color : blue;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.image-list {
  display: flex;
  white-space: nowrap;
  animation: autoscroll 10s linear infinite;
}

.image-list img {
  width: 200px;
  height: 100px;
  margin: 5px;
  object-fit: contain;
}

@keyframes autoscroll {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
/* video */
.shorts-container {
  display: flex;
  flex-direction: column;
  align-items: center; /* Video berada di tengah */
  padding: 20px;
}
.short-wrapper {
  width: 100%;
  max-width: 640px; /* Batas maksimal lebar video */
  text-align: left; /* Teks tetap rata kiri */
}
.short {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background: #000;
}
video {
  width: 100%;
  height: 100%;
  border: none;
}
.caption {
  margin: 10px 0 5px; /* Jarak antara teks dan elemen lainnya */
  color: white; /* Warna teks putih */
  font-size: 16px;
}
