* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Satoshi", sans-serif;
  color: white;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

body {
  background-image: url("bg5.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

header {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 0 0 80px 80px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 30px;
  font-size: 30px;
  font-weight: bold;
}

#sub-welcome {
  font-weight: lighter;
  font-size: 15px;
  margin-top: 10px;
}

header img {
  position: relative;
  top: 35px;
  transform: translateY(-50%);
  height: 80px;
}

.judul-card-menu {
  font-size: 25px;
  text-align: center;
  margin-top: 100px;
  margin-bottom: 10px;
}

.dock {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  height: 200px;
  margin-left: 420px;
  margin-right: 420px;
}

.icon-wrapper {
  position: relative;
  width: 130px;
  height: 130px;
  transition: transform 0.3s ease-in-out;
}

.icon-wrapper:hover {
  transform: scale(1.5);
}

.icon,
.icon-hover {
  position: absolute;
  width: 100%;
  transition: opacity 0.3s ease-in-out;
}

.icon-hover {
  opacity: 0;
}

.icon-wrapper:hover .icon {
  opacity: 0;
}

.icon-wrapper:hover .icon-hover {
  opacity: 1;
}

.button-enid {
  display: flex;
  justify-content: left;
  align-items: center;
  margin-top: 40px;
  /* margin-left: 80px; */
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 0 25px 25px 0;
  width: 190px;
  padding: 10px;
}

.button-id {
  padding: 10px;
  border-style: hidden;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  height: 40px;
  width: 40px;
  font-size: 10px;
}

.button-en {
  padding: 10px;
  border-style: hidden;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  height: 40px;
  width: 40px;
  font-size: 10px;
  transition: color 0.3s ease;
}

.button-id:hover,
.button-en:hover {
  background-color: rgba(255, 1, 1, 0.7);
}

footer {
  text-align: center;
  margin-top: 40px;
  font-size: 12px;
}

@media (max-width: 1268px) {
  header {
    font-size: 20px;
  }

  header img {
    height: 50px;
    top: 20px;
  }

  .judul-card-menu {
    font-size: 15px;
  }

  body {
    background-image: url("bg-pt.png");
    background-repeat: no-repeat;
    background-size: cover;
  }

  .dock {
    gap: 5px;
    padding: 8px;
    border-radius: 40px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .icon-wrapper {
    width: 110px;
    height: 110px;
  }
}
