/* Brand Colors */
:root {
  --velvet: #4D0E14;
  --wine: #AB495C;
  --blush: #E39496;
  --peony: #E9A4AE;
  --candy: #F2CFD5;
  --shadow: #34090D;
}

/* Global */
body {
  margin: 0;
  padding: 0;
  background: var(--candy);
  font-family: 'Lato', sans-serif; /* Secondary font */
  color: var(--shadow);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Container */
.container {
  text-align: center;
  padding: 20px;
}

/* Brand Name */
.brand {
  font-family: 'EB Garamond', serif; /* Primary emotional font */
  font-size: 3.5rem;
  margin: 0;
  color: var(--velvet);
  letter-spacing: 1px;
}

.brand .the {
  font-weight: 500;
  font-style: italic;
  color: var(--wine);
}

.brand .viki {
  font-weight: 600;
  color: var(--velvet);
}

/* Tagline */
.tagline {
  margin-top: 15px;
  font-size: 1.2rem;
  color: var(--wine);
  letter-spacing: 0.5px;
  font-family: 'Lato', sans-serif; /* Clean secondary font */
}