@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&display=swap");

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 1rem;
    padding: 0;
}

body {
    font-family: "Instrument Serif", sans-serif;
    font-size: 2rem;
    color: #4169e1;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensures the body takes at least the full viewport height */
    margin: 0; /* Remove default body margin */
}

.content {
  flex: 1 0 auto; /* This makes the content area grow to fill available space */
}

footer {
  /* optional styling */
  padding: 20px;
  text-align: center;
}
