@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;

  display: flex;
  align-items: center;

  font-size: 16px;
  background: url("src/background.png") repeat;
}

main {
  width: 100%;
  height: auto;

  margin: 1rem 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

#logo {
  width: 80%;
  max-width: 360px;
  min-height: 180px;

  background: url("src/logo_bingo_v4_high_quality.png") no-repeat center;
  background-size: contain;
}

/* #description {
    filter: drop-shadow(2px 2px 0 #FFC300AA);
} */

#description,
#instructions {
  width: 80%;
  max-width: 800px;

  font-size: 1.8rem;
  font-family: "Poppins", sans-serif;
  color: #aaa;
}

#joinButton {
  margin-top: 8px;
  padding: 1rem 2rem;

  display: flex;
  align-items: center;
  gap: 8px;

  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;

  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 12px;
  border: none;
  box-shadow: 0 0 20px #00000050;

  cursor: pointer;

  transition: all 0.3s ease;
}

#joinButton:hover {
  filter: brightness(1.1);
}

.fa-whatsapp {
  font-size: 2rem;
  margin-right: 1rem;
}
