body, html {
    height: 100%;
    font-family: "Open Sans";
    background-color: #faf6f6;
    
  }
  
  .parallax {
    /* The image used */
    background-image: url('img.jpg');
  
    /* Full height */
    height: 50%; 
  
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  
  /* Turn off parallax scrolling for tablets and phones. Increase the pixels if needed */
  @media only screen and (max-device-width: 1366px) {
    .parallax {
      background-attachment: scroll;
    }
  }
  ul {
    list-style-type: none;
    margin-left: 15%;
    padding: 0;
    overflow: hidden;
  }
  
  
  li a {
    color: rgb(0, 0, 0);
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  li a:hover:not(.active) {
    background-color: #e8d4d1;
  }
  
  .active {
    background-color: #04AA6D;
  }
  
  .container {	
      margin-left: 10%;
      margin-right: 10%;
      margin-top: 40px;
      margin-bottom: 60px;
  }
  
  h1 {
      margin-left: 15px;
      background: #e8d4d1;
      font-family: "Playwrite HU";
      font-weight: normal;
  }

 
  
  .all-browsers {
    margin: 0;
    padding: 5px;
    background-color: lightgray;
  }
  
  .all-browsers > h1, .browser {
    margin: 10px;
    padding: 5px;
  }
  
  .browser {
    background: white;
  }
  
  .browser > h2, p {
    margin: 4px;
    font-size: 90%;
  }
  
  footer {
    text-align: center;
    padding: 3px;
    color: #adadad;

  }

  table {
    border-collapse: collapse;
    width: 100%;
  }
  
  th, td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #DDD;
  }
  
  tr:hover {background-color: #e8d4d1;}

  a {
    color: pink;
    text-decoration: none;
  }

