html, body {
    height: 100%;
    width: 100%;
  }
  
  
  
  .main{
    border: 0px solid red;
  }
  
  .nav{
        border: 0px solid #dd6464;
  }
  .qoute{
      margin: auto;
    padding: 2px 2px 2px 2px;
    text-align: center;
    max-width: 40em;
  /*   margin: 1em; */
    font: 1.8rem/1.4 Georgia, serif;
  
    border: 0px solid #6600ff;
  }
  .gallery{
  /*       display: flex;
   */
        border: 0px solid #8cff00;
  }
  /* .gallery div{
          flex: 1 1 auto;
  
  } */
  * {
    box-sizing: border-box;
  }
  
  
  
  /* Add a black background color to the top navigation */
  .nav {
    background-color: #333;
    overflow: hidden;
  }
  
  /* Style the links inside the navigation bar */
  .nav a {
    float: right;
    color: #f1e9e9;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
  }
  
  /* Change the color of links on hover */
  .nav a:hover {
    background-color: #ddd;
    color: black;
  }
  
  /* Add a color to the active/current link */
  .nav a.active {
    float:left;
    background-color: #a4dfca;
    color: #2d2525;
  }
  
  
  
  /* .card {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    width: 50%;
    border-radius: 5px;
  }
   */
  .card:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
  }
  
  img {
    border-radius: 5px 5px 0 0;
  }
  
  /* .container {
    padding: 2px 16px;
  }
   */
  
  
  /* Float four columns side by side */
  .column {
    float: left;
    width: 25%;
    padding: 0 10px;
  }
  
  /* Remove extra left and right margins, due to padding */
  .row {margin: 0 -5px;}
  
  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Responsive columns */
  @media screen and (max-width: 600px) {
    .column {
      width: 100%;
      display: block;
      margin-bottom: 20px;
    }
  }
  
  /* Style the counter cards */
  .card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    padding: 16px;
    text-align: center;
    background-color: #f1f1f1;
  }
  