/* General Page Background */
body {
  background-color: #1e1e1e;
  /* Dark background similar to the calendar */
  color: #f8f8f2;
  /* Light text color for readability */
}

/* Link Colors */
a {
  color: #ffb400;
  /* Orange link color */
}

a:hover {
  color: #ffc107;
  /* Slightly lighter orange on hover */
}

/* Custom styles to make footer stick to bottom */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 1ch;
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
  box-sizing: border-box;
}

main {
  flex: 1;
}

footer {
  margin-top: auto;
  width: 100%;
  box-sizing: border-box;
}

/* Add margin to the bottom of the calendar to create a gap */
.calendar {
  margin-bottom: 2rem;
  /* Adjust this value as needed */
}