@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@1,100&display=swap');

h1{
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}

p{

  width: 50%;
  font-size: 1.4rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
}

h2{
  font-size: 1.7rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 100;

  font-style: italic;
}


.svg-container {
    display: inline-block;
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* aspect ratio */
    vertical-align: top;
    overflow: hidden;
  }
  .svg-content-responsive {
    display: inline-block;
    position: absolute;
    top: 10px;
    left: 0;
  }
  
  svg .rect {
    fill: gold;
    stroke: steelblue;
    stroke-width: 5px;
  }

