/* rand om de foto zetten */
div.border {
    width: 300px;
    height: 200px;
    padding: 0px;
    border: 10px solid white;
    margin: 0;
  }
  
  
  /* <!-- lettertype en kleur --> */
  
  .p1 {
    font-family: "Times New Roman", Times, serif;
  }
  .p2 {
    font-family: Arial, Helvetica, sans-serif;
  }
  
  .p3 {
    font-family: "Lucida Console", "Courier New", monospace;
  }
  body {
    color: rgb(48, 156, 48);
  }
  
  /* <!-- zoomen op foto --> */
  .zoom {
    transition: transform .2s;
    margin: 0 auto;
  }


  
  .zoom:hover {
    -ms-transform: scale(1.5); /* IE 9 */
    -webkit-transform: scale(1.5); /* Safari 3-8 */
    transform: scale(1.5); 
  }
  
   img.logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
  } 

  .pall-mall {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 200px;
  }
  /*-- achtergrond foto staat vast en wordt niet herhaald--*/
  
  body  {
    background: url("foto/aston-martin-db11.jpg") no-repeat center fixed;
    background-color: #cccccc;
    background-size: cover;
  }
  
  .newspaper {
    column-count: 2;
    column-width: 100px;
  }
  
  table, th, td {
    border: 1px solid black;
  }
  .column {
    float: left;
    width: 50%;
    padding: 5px;
    height: auto;
  
  }
  
  /* Clearfix (clear floats) */
  .row::after {
    content: "";
    clear: both;
    display: table;
  }

  /*resize image */
  img.resize {
      max-width: 600px;
      height: auto;

  }

  /*resize video */
  video.resize {
    max-width: 33%;
    height: auto;

}

  /* footer box floating achtergrond zwart, rode tekst en rode rand*/
  
  .footer {
    background-color: black;
    color: white;
    padding: 10px;
  }
  
  div.parent {
    position: relative;
    height: 200px;
    border: 3px solid red;
  }
  
  div.absolute {
    position: absolute;
    width: 50%;
    bottom: 10px;
    border: 3px solid #8AC007;
  } 
  
  div.relative {
    position: relative;
    width: 50%;
    bottom: 5px;
    border: 3px solid #8AC007;
  } 
  
  div.fixed {
    position: fixed;
    width: 100%;
    bottom: 10px;
    border: 3px solid red;
    background-color: black;
    color: red;
  } 
  
  div.sticky {
    position: sticky;
    width: 95%;
    bottom: 10px;
    border: 3px solid #8AC007;
  } 
  
  /* schaduw bij de foto's */
  
  div.polaroid {
    width: 300px;
    box-shadow: 20px 20px 10px black;
    text-align: center;
  }
  
  div.container {
    padding: 10px;
  }