* {
    box-sizing: border-box;
  }
  
  /* Style the body */
  body {
    font-family: Arial;
    margin: 0;
  }
  /*Polaroid Images / Cards*/
  div.polaroid {
    width: 100%;
    background-color: white;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin-bottom: 25px;
  }
  
  div.container {
    text-align: center;
    padding: 10px 20px;
  }
  
  /* Header/logo Title */
  .header {
    padding: 60px;
    text-align: center;
    background: #1abc9c;
    color: white;
  }
  
  /* Style the top navigation bar */
  .navbar {
    display: flex;
    background-color: #333;
  }
  
  /* Style the navigation bar links */
  .navbar a {
    color: white;
    padding: 14px 50px;
    text-decoration: none;
    text-align: center;
  }
  
  /* Change color on hover */
  .navbar a:hover {
    background-color: #ddd;
    color: black;
  }
  
  /* Column container */
  .row {  
    display: flex;
    flex-wrap: wrap;
  }
  
  /* Create two unequal columns that sits next to each other */
  /* Sidebar/left column */
  .side {
    flex: 10%;
    background-color: #f1f1f1;
    padding: 20px;
  }
  
  /* Main column */
  .main {
    flex: 70%;
    background-color: white;
    padding: 20px;
  }
  
  /* Fake image, just for this example */
  .fakeimg {
    background-color: #aaa;
    width: 100%;
    padding: 20px;
  }

  img{
    background-color: #aaa;
    display: block;
    padding: 10px;
    margin-left: auto;
    margin-right: auto;
    height: auto;
    width: 100%;
    object-fit: contain;
  }
  
  
  /* Footer */
  .footer {
    padding: 80px;
    background: #ddd;
  }
  
  
  .chooser:link, .chooser:visited {
    background-color: white;
    color: black;
    border: 2px solid #333;
    padding: 5px 30px;
    margin-bottom: 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
  }
  
  .chooser:hover, .chooser:active {
    background-color: #333;
    color: white;
  }
  
  /* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 925px) {
    .row, .navbar {   
      flex-direction: column;
    }
  }