body,
html {
  margin: 0;
  padding: 0;
  font-family: "Vollkorn", serif; /* Sets Vollkorn as the primary font, with a generic serif as a fallback */
  background-color: #000000;
}

h1 {
}

h2 {
	color: #688EE5;
}

h3 {
	color: #B54A32;
}

h4 {
	color: #688EE5;
}

p {
	color: #3B4347;
}

a {
	color: inherit; /* Inherits the color from the parent element */
	text-decoration: underline; /* Underlines the link */
}

.button {
	background-color: #e8e3c5;
	border: 2px dashed #B54A32;
	color: #B54A32;
	padding: 16px 32px;
	text-align: center;
	display: inline-block;
	width: 80%;
}

.button:hover {
	background-color: #555555;
	color: #688EE5;
}

.button2 {
	background-color: #e8e3c5;
	border: 2px dashed #e8e3c5;
	color: #555555;
	padding: 16px 32px;
	text-align: center;
	display: inline-block;
	width: 80%;
}

.button2:hover {
	background-color: #B54A32;
	color: #688EE5;
}

.container {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto; /* Enable horizontal scrolling for the container */
  min-width: calc(
    2 * (10cm + 2px)
  ); /* Calculate minimum width based on column count and width */
}

.column {
  flex: 0 0 10cm; /* Flex grow, flex shrink, flex basis */
  margin-right: 2px; /* Gutter space between columns */
  background-color: #e8e3c5; /* Example background color */
  padding: 10px;
  box-sizing: border-box;
}

/* Remove margin for the last column */
.column:last-child {
  margin-right: 0;
}

/* Responsive design for mobile devices */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    overflow-x: hidden; /* Disable horizontal scrolling for mobile */
    min-width: 0; /* Reset minimum width for mobile */
  }

  .column {
    margin-bottom: 2px; /* Gutter for vertical layout */
    flex-basis: auto; /* Allow columns to adjust their width to content on mobile */
  }

  .column:last-child {
    margin-bottom: 0;
  }
}
