/* 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." */

body {
  background-color: white;
  color: black;
  font-family: Tahoma, sans-serrif;
}

a { /* link formatting */
  color: inherit; /* keep color the same as everything else*/
  text-decoration: none; /* no underline */
  padding: 20px; /* make sure links aren't all jammed into each other*/
}

h3 {
  font-weight: normal;
}

ul.title-content-list > li { /* stuff for making links at top nice*/
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 50px; 
}

ul.title-content-list > li > .title { /* homepage link formatting*/
  font-size: 30px;
}

ul.title-content-list > li > .content { /* other link formatting*/
  font-size: 15px;
}

.container {
  align-items: center; 
  float: left;
}
.image{
    float: left;
  padding: 5px;
}

.div.center{
  align-items: center; 
  float: left;

}