@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #daebfe;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}
#loading-screen.hidden {
  opacity: 0; /* Fade out */
  visibility: hidden; /* Remove from layout */
}
.loading-text {
  font-size: 2rem;
  font-weight: bold;
  color: #123361;
  animation: fadeIn 2s ease-in-out infinite;
  font-family: 'Times New Roman', Times, serif;
}

@keyframes fadeIn {
  0% { opacity: 0;
  }
  50% { opacity: 1;
  }
  100% {opacity: 0;
  }
}

@keyframes loadingProgress {
  0% {width: 0%;
  }
  100% {width: 100%;
  }
}

/* Hide the loading screen after content is loaded */
.loaded #loading-screen {
  opacity: 0;
  pointer-events: none;
}

.rowgdproject {
  position: relative; /* Posisi relatif untuk penataan elemen-elemen di dalamnya */
  margin: 0;
  padding: 0;
}
.btn-back
{
  font-size: 1em;
  z-index: 9;
  text-decoration: none;
  padding: 6px 15px;
  border-radius: 20px;
  width: 50px;
  transition: transform 0.3s ease-in-out;
  align-items: center;
  text-align: center;
  justify-items: center;
  font-family: 'Poppins', sans-serif;
  margin: 10px;
  position: fixed;
  color: #FFF;
}

.btn-back:hover
{
  transform: scale(1.1);
  background-color: #40568B;
  color: #FFF;
}
.photo
{
  position: relative;
  width: 100%;
  object-fit: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  display: block;
}
.btn-youtube {
  position: absolute;
  top: 20px; /* Atur jarak dari atas */
  right: 20px; /* Atur jarak dari kanan */
  padding: 10px 20px;
  background-color: #fff;
  color: #40568B;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-youtube:hover {
  transform: scale(1.1);
  background-color: #40568B;
  color: #fff;
}

/* Responsif */
@media (max-width: 768px) {
  .btn-youtube {
      top: 10px;
      right: 10px;
      font-size: 14px;
      padding: 8px 16px;
  }
}