@font-face {
  font-family: 'malang';
  src: url('./malang.woff2') format('woff2');
  font-display: swap;
}

* {
  box-sizing: border-box;
}

body.img {
  margin: 0;
  min-height: 100vh;
  background: url("bg.png") no-repeat center / cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 20px;
}

.jua {
  font-family: "malang", sans-serif;
}

h1 {
  font-size: 32px;
  text-align: center;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  width: 100%;
}

.liquid {
  width: 100%;
  max-width: 260px;
  padding: 14px 0;
  font-size: 20px;
  color: black;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.ogong {
  font-size: 24px;
  text-align: center;
}

@media (min-width: 768px) {
  h1 {
    font-size: 42px;
  }

  .buttons {
    max-width: 720px;
    gap: 20px;
  }

  .liquid {
    max-width: 300px;
    padding: 16px 0;
    font-size: 22px;
  }

  .ogong {
    font-size: 36px;
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 56px;
  }

  .buttons {
    max-width: 960px;
    gap: 28px;
  }

  .liquid {
    max-width: 380px;
    padding: 22px 0;
    font-size: 28px;
  }

  .ogong {
    font-size: 48px;
  }
}
