*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 62.5%;
}

:root {
  --color-merkurPrimary: #022652;
  --color-merkurSecondary: #ffcc00;
  --color-Complementary--50: #f1f3ff;
}

@font-face {
  font-family: "MerkurSans-Regular";
  src: url("./MerkurSans-Regular.woff2");
  font-weight: 400;
}

@font-face {
  font-family: "MerkurSans-Regular";
  src: url("./MerkurSans-Bold.woff2");
  font-weight: 700;
}

body {
  height: 100vh;
  background-color: var(--color-Complementary--50);
  font-family: "MerkurSans-Regular";
}

.container {
  height: 100%;
}

.content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  padding: 1.4rem;
  height: 100%;
  margin: auto;
  justify-content: space-between;
  padding-top: 8rem;
}

@media only screen and (min-width: 768px) {
  .content-container {
    max-width: 45rem;
    justify-content: center;
    padding-top: 1.4rem;
  }
}

.content-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.text-wrapper {
  color: var(--color-merkurPrimary);
  text-align: center;
}

.text-fragment {
  font-size: 2.4rem;
  font-weight: 700;
  padding: 1rem 0 1rem 0;
}

.subtext-fragment {
  font-size: 1.4rem;
  opacity: 75%;
  font-weight: 400;
}

.btn {
  width: 100%;
  padding: 1.4rem;
  outline: none;
  border: none;
  background-color: var(--color-merkurSecondary);
  font-weight: 700;
  border-radius: 0.8rem;
  cursor: pointer;
}

a {
  text-decoration: none;
  color: var(--color-merkurPrimary);
  font-size: 1.4rem;
  font-family: "MerkurSans-Regular";
}
