/* index.css: CSS stylesheet for home page */

img.homepage { width: 100% }

div.homepagetext 
{
  max-width: 1500px; 
  line-height: 1.5;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

div.homepagetext div
{
  flex-basis: 300px;
  flex-grow: 1;
  max-width: 700px;
}

div.homepagetext div.homepage_insert
{
  flex-grow: 0;
  /* height: 450px;  */
  margin: 0 20px 20px 0;
  font-style: italic;
  font-family: 'Georgia', serif;
  font-weight: bold;
  background: #eee;
  text-align: center;
}

div.homepage_insert img
{
  display: block;
  max-width: 300px;
}

