div[geneva]
  {
  display: grid; 
  grid-template-columns: max-content 3em max-content; grid-template-rows: min-content 3em min-content;
  justify-content: center;
  justify-items: center;
  }

div[geneva]>img:first-of-type
  {
  grid-column: 1 / span 2; 
  grid-row: 1 / span 2; 
  border: 1px solid white; border-top-left-radius: 3em; box-shadow: 5px 5px 2px silver;
  }

div[geneva]>div:first-of-type
  {
  max-width: 25em;
  padding: 1em; align-self: end; justify-self: start; text-align: left;
  }

div[geneva]>img:last-of-type
  {
  grid-column: 2 / span 2; 
  grid-row: 2 / span 2; 
  border: 1px solid white; border-bottom-right-radius: 2em; box-shadow: 5px 5px 2px silver;
  }

div[geneva]>div:last-of-type
  {
  padding: 1em; align-self: start; justify-self: end; text-align: right;
  max-width: 30em;
  }


