@font-face {
  font-family: "Inter";
  src: url("./assets/fonts/Inter-VariableFont_slnt,wght.ttf") format("truetype");
  font-weight: 400 600;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("./assets/fonts/Inter-VariableFont_slnt,wght.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

h1, h2, p {
  margin: 0;
}

body {
  margin: 0;
  background-color: #141414;
  padding: 1.5rem;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

button {
  border: 0;
  border-radius: 0.5rem;
  background-color: #333333;
  padding: 0.75rem;
  width: 100%;
  color: #FFFFFF;
  cursor: pointer;
  transition: color 0.6s ease-out, background-color 0.6s ease-out;
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 150%;
  letter-spacing: 0;
}

button:hover {
  background-color: #C4F82A;
  color: #333333;
}

#app {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.attribution {
  font-size: 11px;
  text-align: center;
  color: #FFFFFF;
  position: fixed;
  bottom: 0;
  z-index: 2;
}

.attribution a {
  color: hsl(228, 45%, 70%);
}

.card {
  border-radius: 0.75rem;
  background-color: #1F1F1F;
  padding: 2.5rem;
  width: 100%;
  max-width: 384px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 1.5rem;
}
@media (max-width: 600px) {
  .card {
    padding: 1.5rem;
  }
}

.cardButtons {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}

.cardHeader {
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 0.25rem;
}

.cardHeaderSubTitle {
  text-align: center;
  color: #C4F82A;
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 150%;
  letter-spacing: 0;
}

.cardHeaderTitle {
  text-align: center;
  color: #FFFFFF;
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 150%;
  letter-spacing: 0;
}

.cardImage {
  border-radius: 100%;
  height: 88px;
  width: 88px;
}

.cardText {
  text-align: center;
  color: #FFFFFF;
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 150%;
  letter-spacing: 0;
}

/*# sourceMappingURL=styles.css.map */
