@import "./styles/header.css";
@import "./styles/footer.css";

body {
  min-height: 100vh;
  font-family: Arial, sans-serif;
  background-color: whitesmoke;
  color: #121212;
  display: flex;
  /* flex to push the header and footer to the top and bottom */
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  margin: 0;
}

/* layouts */
.bold {
  font-weight: bold;
}