/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

.main_flex_columns {
  display: flex;
  justify-content: space-evenly;
  column-count: 2;
}

/* Make a one column-layout instead of three-column layout */
@media (max-width: 600px) {
  .main_flex_columns {
    flex-direction: column;
  }
}

.menu_column {
 flex: 1;
 padding: 35px;
}

.content_column {
 flex: 2;
 padding: 10px;
}

/* floating button formatting */
#backtotop_button {
  z-index: 10; 
  position: fixed; 
  left: 20px; 
  bottom: 30px
}

figure {
  border: 0px;
  padding: 0px;
  margin: 0;
}

   body {
  background-color: #e7e0d2;
  color: black;
  font-family: Verdana;
}

h1 {
  text-decoration: none;
  color: black;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

h2 {
  font-size: large;
  font-family:Arial, Helvetica, sans-serif;
}

a {
  text-decoration-line: underline;
  text-decoration-style: dotted ;
  text-decoration-color: #15432a;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  color: black;
}
a:hover {
  color: red;
}

footer {
  background-color: #aba08a;
  display: flex;
  flex-direction: row;
  font-family: 'Courier New', Courier, monospace;
  font-size: larger;
}


.footer-column-1 {
flex: 1;
padding: 20px;
}

.footer-column-2 {
flex: 1;
padding: 20px;
}


