:root {
  --color-primary: #46b978;
  --color-background: #131614;
  --color-text: #e3ede7;
  --color-card: #1e2421;
  --color-card-border: #27302b;
  --color-card-separator: #2e3832;
}

html,
body {
  height: 100%;
  font-family: 'Geologica', sans-serif;
}

html {
  font-size: 16px;
}

body {
  background-color: var(--color-background);
  display: flex;
  justify-content: center;
  align-items: center;
}

h1 {
  font-size: 4rem;
  color: var(--color-text);
  line-height: 0;
}

@media screen and (max-width: 600px) {
  h1 {
    font-size: 8vw;
  }
}

h4 {
  font-size: 1.5rem;
  color: var(--color-text);
  line-height: 0;
}

@media screen and (max-width: 600px) {
  h4 {
    font-size: 0.75rem;
  }
}

.card {
  padding: 2rem;
  background-color: var(--color-card);
  display: flex;
  border-radius: 1rem;
  border: 1px solid var(--color-card-border);
  margin-bottom: 10vh;
  flex-direction: column;
}

@media screen and (max-width: 600px) {
  .card {
    padding: 1rem;
    border-radius: 1rem;
  }
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  overflow: hidden;
  white-space: nowrap;
}

@media screen and (max-width: 600px) {
  .card-header {
    gap: 0.5rem;
  }
}

.logo {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
}

@media screen and (max-width: 600px) {
  .logo {
    width: 8vw;
    height: 8vw;
    border-radius: 2vw;
  }
}

.card-body {
  color: var(--color-text);
  text-align: center;
  margin-top: 1rem;
  padding-top: 3rem;
  border-top: 1px solid var(--color-card-separator);
}
