:root {
  --primary-color: #005b7f;
  --secondary-color: #94618e;
  --accent-color: #86a873;
  --background-color: #1a1c22;
  --text-color: #f5f9ff;
}

* {
  box-sizing: border-box;
}

html {
  height: 100vh;
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

/* Reset some default styles */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
button {
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

header {
  margin-top: 5%;
  text-align: center;
  padding: 1rem 0;
}

h1 {
  font-size: 2.5rem;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 70vh;
}

button {
  width: 100%;
  padding: 1rem 2rem;
  margin: 0.5rem;
  font-size: 1rem;
  border: none;
  background-color: var(--primary-color);
  color: var(--text-color);
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s, transform 0.2s;
}

button:hover {
  background-color: var(--accent-color);
  transform: scale(1.05);
}

footer {
  text-align: center;
  padding: 1rem 0;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}
