:root {
  --primary-color: white;
  --secondary-color: #eeeeeeae;
  --accent-color: #ccccccae;
  --alternate-accent-color: #ababab;

  /* Shades of grey for text */
  --dark-grey: #292929;
  --medium-dark-grey: #505050;
  --light-grey: #999999;
}

/* Reset default margin and padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styles */
body {
  font-family: Arial, sans-serif;
}

/* Header styles */
.title,
.footer {
  background-color: var(--primary-color);
  color: var(--dark-grey);
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-weight: bolder;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Horizontally center */
  align-items: center; /* Vertically center */
  font-size: 2.5rem;
  padding: 0.5rem;
}

/* Overwriting Footer styles */
.footer {
  background-color: var(--dark-grey);
  color: white;
  font-weight: normal;
  border-radius: 0.5rem;
  font-size: 1em;
  margin: 0rem 1rem 1rem 1rem;
}

/* Footer styles */
.footer a:link {
  color: white;
}

.footer a:visited {
  color: white;
}

.footer a:hover {
  color: rgb(100, 160, 255);
}

/* Container styles */
.container {
  display: flex;
  flex-direction: row;
  height: 90vh;
}