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

:root {
  --white: #fff;
  --background: #d5e1fe;
  --dropshadow: #ccc;
  --header: #1f314f;
  --text: #68778d;
}

body {
  background-color: var(--background);
  font-family: "Outfit", sans-serif, serif;
  text-align: center;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
}

.card {
  background-color: var(--white);
  height: auto;
  min-width: 21.25em;
  max-width: 21.25em;
  padding: 1em;
  border-radius: 1em;
  box-shadow: 5px 5px 20px var(--dropshadow);
}

.qr_code {
  width: 100%;
  height: auto;
  border-radius: 1em;
  margin-bottom: 0.8em;
}

.card_text {
  width: 100%;
}

.text_1 {
  font-size: 1.5em;
  color: var(--header);
  line-height: 120%;
  margin-bottom: 1em;
  font-weight: bold;
}

.text_2 {
  font-size: 1.1em;
  color: var(--text);
  line-height: 140%;
  letter-spacing: 0.05rem;
  margin-bottom: 1.4em;
}
