@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,800;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    
}


body {
  background: #181818;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
}

.logo-container {
  position: relative;
    width: 25vw; /* Ukuran lebih kecil untuk desktop */
    height: 25vw;
    display: flex;
    justify-content: center;
    align-items: center;
}


.wyly {
  position: absolute;
    width: 18vw; /* Sesuaikan ukuran logo */
    height: 11vw; /* Agar proporsional */
    object-fit: contain;
    top: 50%;
    left: 50%;
    transform: translate(-50.5%, -55%); /* Tepat di tengah */

}

.tech {
  position: absolute;
    width: 100%; /* Mengisi container sepenuhnya */
    height: 100%; /* Mengisi container sepenuhnya */
    object-fit: cover;
}



.nama {
  display: block;
  text-align: center;
  font-size: 2rem; /* Responsif menggunakan rem */
  color: white;
}
span {
    color:rgb(0, 183, 255);
}

.keterangan {
  text-align: center;
  color: white;
  padding: 0 20vw; /* Padding horizontal responsif */
  font-size: 1rem; /* Responsif menggunakan rem */
  line-height: 1.8; /* Line height untuk keterbacaan */
}

/* social media */
.icon-container {
    display: flex;
    justify-content: center;
    gap: 2vw; /* Jarak antar elemen responsif */
    margin-top: 0.5rem;
}

/* instagram */
.social-icon, .social-icon-2, .social-icon-3, .social-icon-4 {
  width: 3vw; /* Lebar ikon responsif */
  height: 3vw; /* Tinggi ikon sama dengan lebar */
  line-height: 8vw; /* Menjaga teks/icon berada di tengah */
  display: flex; /* Flexbox untuk sentrisasi */
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgb(61, 106, 255); /* Warna border */
  border-radius: 7px; /* Membuat sudut membulat */
  transition: all 0.3s; /* Animasi */
}
  
.social-icon a, .social-icon-2 a, .social-icon-3 a, .social-icon-4 a {
  font-size: 1.5rem; /* Ukuran font responsif */
  color: #fff; /* Warna ikon */
  text-decoration: none; /* Hilangkan garis bawah */
}

  
.social-icon:hover, .social-icon-2:hover, .social-icon-3:hover, .social-icon-4:hover  {
    background: rgb(61, 106, 255);
    transform: rotate(135deg);
    box-shadow: 0 0 5px rgb(61, 106, 255), 0 0 10px rgb(61, 106, 255);
    border-radius: 7px;
    box-shadow: 0 0 30px 5px rgba(0, 142, 236, 0.815);
  }
  
  .social-icon a::before, .social-icon-2 a::before , .social-icon-3 a::before , .social-icon-4 a::before  {
    content:' ';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: -1;
    border-radius: 7px;
    
  }

  
  
  .social-icon::before, .social-icon-2::before, .social-icon-3::before, .social-icon-4::before {
    background: #fff;
    box-shadow: 0 0 50px 30px #fff;
    -webkit-transform: skewX(-20deg);
    -moz-transform: skewX(-20deg);
    -ms-transform: skewX(-20deg);
    -o-transform: skewX(-20deg);
    transform: skewX(-20deg);
  }
  
  @keyframes sh02 {
    from {
      opacity: 0;
      left: 0%;
    }
  
    50% {
      opacity: 1;
    }
  
    to {
      opacity: 0;
      left: 100%;
    }
  }
  
  .social-icon:active .social-icon-2:active, .social-icon-3:active, .social-icon-4:active {
    box-shadow: 0 0 0 0 transparent;
    -webkit-transition: box-shadow 0.2s ease-in;
    -moz-transition: box-shadow 0.2s ease-in;
    transition: box-shadow 0.2s ease-in;
  }
  
  .social-icon a i, .social-icon-2 a i, .social-icon-3 a i, .social-icon-4 a i{
    font-size: 1.5vw;
    color: #ffff;
    transition: transform 0.3s ease-in-out;
    transform-origin: center center;
  }
  
  .social-icon a:hover i, .social-icon-2 a:hover i, .social-icon-3 a:hover i, .social-icon-4 a:hover i {
   transform: rotate(225deg) scale(1);
   color:  rgb(255, 255, 255);
   font-size:inherit;
  }
  
  /* Tombol utama */
.button {
  display: block;
  position: fixed; /* Posisi tetap */
  top: 20px; /* Jarak dari atas */
  left: 20px; /* Jarak dari kiri */
  width: 56px;
  height: 56px;
  margin: 0;
  overflow: hidden;
  outline: none;
  background-color: transparent;
  cursor: pointer;
  border: 0;
  z-index: 1000; /* Tetap terlihat di atas */
}

.button:before,
.button:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  inset: 7px;
}

.button:before {
  border: 4px solid #f0eeef;
  transition: opacity 0.4s cubic-bezier(0.77, 0, 0.175, 1) 80ms,
    transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) 80ms;
}

.button:after {
  border: 4px solid rgb(0, 183, 255);
  transform: scale(1.3);
  transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
}

.button:hover:before,
.button:focus:before {
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.button:hover:after,
.button:focus:after {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.4s cubic-bezier(0.77, 0, 0.175, 1) 80ms,
    transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) 80ms;
}

.button-box {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.button-elem {
  display: block;
  width: 20px;
  height: 20px;
  margin: 17px 18px 0 18px;
  transform: rotate(180deg);
  fill: #f0eeef;
}

.button:hover .button-box,
.button:focus .button-box {
  transition: 0.4s;
  transform: translateX(-56px);
}

/* Responsif */
@media (max-width: 768px) {
  .button {
    width: 45px; /* Lebih kecil untuk layar kecil */
    height: 45px;
    top: 10px; /* Sesuaikan jarak */
    left: 10px;
  }

  .button-elem {
    width: 16px; /* Ukuran ikon lebih kecil */
    height: 16px;
    margin: 14px 14px 0 14px;
  }

  .button:before {
    border: 3px solid #f0eeef;
  }

  .button:after {
    border: 3px solid rgb(0, 183, 255);
  }
}

@media (max-width: 480px) {
  .button {
    width: 40px; /* Lebih kecil lagi untuk layar sangat kecil */
    height: 40px;
    top: 8px;
    left: 8px;
  }

  .button-elem {
    width: 12px;
    height: 9px;
    margin: 20px 5px 0 14px;
  }

  .button:before {
    border: 2px solid #f0eeef;
  }

  .button:after {
    border: 2px solid rgb(0, 183, 255);
  }
}

 
  @media (max-width: 768px) {
    body {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start; /* Sesuaikan posisi */
        padding: 1rem 0;
    }

    .logo-container {
        width: 50vw; /* Lebih besar di mobile */
        height: 50vw;
        gap: 5vw;
    }

    .tech {
        width: 100%; /* Tetap mengisi container */
        height: 100%;
    }

    .wyly {
        width:25vw; /* Ukuran lebih besar di mobile */
        height: 21vw;
        object-fit: contain;
        top: 50%;
        left: 50%;
        transform: translate(-51%, -55%);
    }

    .nama {
        font-size: 1.8rem; /* Ukuran font lebih kecil di mobile */
        margin-top: 1rem;
    }

    .keterangan {
        font-size: 1rem; /* Font lebih kecil di mobile */
        padding: 0 5vw; /* Padding untuk keterbacaan */
        line-height: 1.5; /* Line-height lebih kecil */
    }

    .icon-container {
        gap: 5vw; /* Ikon lebih renggang di mobile */
        margin-top: 1.5rem;
    }

    .social-icon, .social-icon-2, .social-icon-3, .social-icon-4 {
        width: 50px; /* Ukuran ikon lebih besar di mobile */
        height: 50px;
    }

    .social-icon a i, .social-icon-2 a i, .social-icon-3 a i, .social-icon-4 a i {
        font-size: 24px;
    }

    
}
  

  