@import url("https://fonts.googleapis.com/css2?family=Michroma&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Michroma", sans-serif;
  height: 100vh;
  margin: 0;
    padding: 0;
    
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
  background: linear-gradient(to bottom,  #66bed7,#1597b4,#00183d);
  color: #00ffd5;
  height: 100%;
  width: 100%;
  
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.loading-page {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to top,  #66bed7,#1597b4,#00183d);

  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  color: #189197;
}

#svg {
  height: 150px;
  width: 150px;
  stroke: rgb(0, 140, 255);
  fill-opacity: 1;
  stroke-width: 3px;
  stroke-dasharray: 4500;
  animation: draw 8s ease;
}

@keyframes draw {
  0% {
    stroke-dashoffset: 4500;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

.name-container {
  height: 30px;
  overflow: hidden;
}

.logo-name {
  color: #00ffcc;
  font-size: 20px;
  letter-spacing: 12px;
  text-transform: uppercase;
  margin-left: 20px;
  font-weight: bolder;
}
.info-container {
  position: fixed; /* Tetap di tempat */
  bottom: 20px; /* Jarak dari bawah */
  left: 20px; /* Jarak dari kiri */
  cursor: pointer;
}

.info-logo {
  width: 35px; /* Sesuaikan ukuran logo */
  height: auto;
  animation: fadeIn 2s ease-in-out forwards; /* Animasi fade-in */
}

.info-text {
  display: none; /* Sembunyikan teks secara default */
  position: absolute;
  bottom: 50px; /* Atur posisi teks di atas logo */
  left: 60%;
  transform: translateX(-50%);
  background-color: #00d9ff;
  color: #ffffff;
  padding: 10px;
  border-radius: 5px;
  white-space: nowrap;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  z-index: 100;
}

.info-container:hover .info-text {
  display: block; /* Tampilkan teks saat di-hover */
}

@keyframes fadeIn {
  0% {
    opacity: 0; /* Awal transparan */
  }
  100% {
    opacity: 1; /* Akhir terlihat sepenuhnya */
  }
}