:root {
  --color-pakistanBlue: #1e2f3f;
  --color-hunterBlue: #2a3d59;
  --color-fernBlue: #3d5878;
  --color-bgDark: #262529;
  --color-mixed: #6a7b96;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--color-bgDark);
  color: white;
  font-family: "Inter", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
}

h1,
h2 {
  font-family: "Libre Baskerville", serif;
  color: var(--color-fernBlue);
}

p {
  color: var(--color-fernBlue);
}

a {
  color: var(--color-mixed);
}

.text-lg {
  font-size: 1.5rem;
  font-family: "Libre Baskerville", serif;
}

#lottie-animation {
  width: 300px;
  height: 300px;
  margin: 0 auto;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #0056b3;
}