:root {
  --bg-color: #1f1f1f;
  --text-color: #f7f7ff;
  --accent-color: #ab752a;

  --accent-gradient-first: #ab752a;
  --accent-gradient-second: #faf397;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: 'Geist', sans-serif;
  min-height: 100vh;
  margin: 0;
}

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

.landing .content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}

.landing .content .image {
  height: 400px;
}

.landing .content .slogan {
  padding-top: 1.5rem;
  font-size: 2.5rem;
  font-weight: 300;
}

.accent {
  background: #AB752A;
  font-weight: bold;
  background: linear-gradient(45deg, var(--accent-gradient-first) 0%, var(--accent-gradient-second) 50%, var(--accent-gradient-first) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

