body {
  background-image: url(./b54a76d2-bc8c-40c9-b858-b9c04d0c8471.png);
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  margin: 0;
  font-family: "Satoshi", sans-serif;

  /* softer than pure black */
  background-color: #121212;
  position: relative;
}

#canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

/* ---------- HEADER ---------- */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 28px;

  /* background: rgba(18, 18, 18, 0.55);
  backdrop-filter: blur(8px); */
}

img {
  height: 60px;
  width: 150px;
}

.layerbrett {
  height: 60px;
  width: 300px;
}

/* ---------- BUTTON GROUP ---------- */
.buttons {
  display: flex;
  gap: 12px;
}

/* ---------- PRIMARY / SECONDARY BUTTONS ---------- */
.button1,
.button2 {
  font-family: "Satoshi", sans-serif;
  font-size: 14px;
  font-weight: 600;

  padding: 14px 18px;
  border-radius: 10px;
  cursor: pointer;

  color: #f5f5f0;
  border: none;

  background: linear-gradient(135deg, #4a5f1a, #3f4f1a, #2e3a12);

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  transition: all 0.25s ease;
}

.button2 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.button1:hover,
.button2:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #5f7a24, #4a5f1a, #2e3a12);
}

/* ---------- MAIN CARD ---------- */
main {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 120px;
}

main div {
  width: 600px;
  padding: 28px 32px;
  border-radius: 24px;

  /* glass but warmer */
  background: rgba(246, 240, 225, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.22);

  box-shadow: 1 20px 50px rgba(0, 0, 0, 0.4);

  text-align: center;
  color: #2b2b2b;
}

/* ---------- TEXT ---------- */
h2 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 12px;

  color: #1f1f1f;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

p {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 24px;

  color: #2f2f2f;
}

/* ---------- CTA BUTTON ---------- */
.button3 {
  font-family: "Satoshi", sans-serif;
  font-size: 14px;
  font-weight: 600;

  padding: 16px 22px;
  border-radius: 12px;
  cursor: pointer;

  color: #f5f5f0;
  border: none;

  background: linear-gradient(135deg, #4a5f1a, #3f4f1a, #2e3a12);

  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  transition: all 0.3s ease;
}

.button3:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #fff3d8, #eadfc4);
  color: black;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .layerbrett {
    width: auto;
  }
}

@media (max-width: 650px) {
  main div {
    width: 80%;
    padding: 24px;
    border-radius: 16px;
  }
}
@media (max-width: 500px) {
  /* main div {
    width: 90%;
    padding: 24px;
  } */
  .button2 {
    display: none;
  }

  .layerbrett {
    display: none;
  }

  h2 {
    font-size: 28px;
  }

  .button1,
  .button2 {
    font-size: 12px;
    padding: 12px 14px;
    gap: 20px;
  }
}
