
body {
  background-color: #dbdbdb;
  }
  * {
      box-sizing: border-box;
  }
  .menu {
      float: left;
      width: 200px;
      height: 100%;
      background-color: #50a5a5;
  }
  .sidebar-title {
    padding-left: 10px;
    font-family: monospace;
    font-weight: 700;
    font-size: 25px;
    line-height: 22px;
    color: #80568e;
  }
  .image-div img {
    height: auto;
  }
  .summary {
      width: auto;
  }
  
  .container {  
      display: grid; 
      padding-left: 5px; 
      grid-gap: 5px;  
      grid-template-columns: repeat(auto-fit, 300px);
      grid-template-rows: repeat(2, 320px);    
  }