/*
@font-face {
  font-family: "Lato";
  src:
    url("Lato-Regular.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}
    
html {
  font-family: "Lato", "Lato-Regular", sans-serif;
}
*/

body {
  /*
  */
  font-family: "Inconsolata", Geneva, Verdana, sans-serif;
  padding: 0px 50px 20px 50px;
  font-size: 160%;
}


/* classes for table made of divs */
/*
.divTable {
  display: table;
  width: auto;
  column-count: 2;
  column-fill: auto;
}
*/

.Box {
  /*
  display: table-row;
  width: auto;
  flex-direction: column;
  justify-content: space-between;
  border: 2px dotted rgb(96 139 168);
  */
  display: flex;
  padding: 5px;
}

.Box > * {
  /*
  border: 2px solid rgb(96 139 168);
  border-radius: 5px;
  background-color: rgb(96 139 168 / 0.2);
  padding: 1em;
  */
}

.image {
  /*
  display:table-column;
  max-width: 340px;
  display:table-cell;
  border: 2px solid blue;
  border: 10px solid lightgrey;
  */
  flex:1;
  width: 340px;
  max-width: 340px;
  text-align: center;
  padding: 2px;
  justify-content: center;
  align-items: center;
  background-color: rgb(150 160 168 / 0.2);
}

.text {
  /*
  align: right; 
  display:table-cell;
  border: 2px solid black;
  width: 30%;
  */
  flex:3;
  max-width: 800px;
  padding: 25px;
  background-color: rgb(200 139 168 / 0.2);
  justify-content: center;
  align-items: center;
}

h1 {
  /*
  font-family: Geneva, Verdana, sans-serif;
  */
  color: rgb(30 30 30 / 0.8);
  font-size: 300%;
}
p {
  color: red;
  font-family: Courier;
  font-size: 160%;
}
img {
  margin: 10px;
  width: 300px;
}


body {
  background-color: rgb(230 230 230);
}
