@charset "UTF-8";

  body {
    background-color: #efefef;
  }

.bold {
  font-weight: bold;
}

.semibold {
  font-weight: 600; 
}

.italic {
  font-style: italic;
}

.light {
  font-weight: 300;
}

  #container {
  display: grid;
  box-sizing: border-box;
  padding: 30px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr;
  grid-gap: 20px;
  width: 800px;
  height: 800px;
  margin: 100px auto 25px auto;
  background-color: #fff;
}

#container>* {
  display: flex;
  font-family: "source-sans-3-variable", sans-serif;
  font-weight: 400;
  font-size: 10pt;
  line-height: 15px;
  color: #333;
  flex-direction: column;
  background-color: white;
}

.section1
{
  grid-column: span 2;
  grid-row: 1;
}

.section2
{
  grid-column: span 2;
  grid-row: 2;
  grid-row-end: span 3;
}

.section3
{
  grid-column-end: span 2;
  grid-row-end: span 2;
  
}

.section4
{
  grid-row: 1;
  grid-column: 5;
  grid-column-end: span 2;
  grid-row-end: span 4;
}


#info {
  font-family: Helvetica, sans-serif;
  font-size: 12px;
  line-height: 15px;
  color: #555;
  width: 800px;
  margin: 0 auto 100px auto;
}
