@media screen and (min-width: 520px) {
  
  /*******************************
  TWO COLLUMN LAYOUT
  *******************************/
  
  #primary {
    width: 50%;
    float: left;
    margin-left: 3%;
  }
  
  #secondary {
    width: 40%;
    float: right;
  }
  
  /*******************************
  PORTFOLIO
  *******************************/
  
  #gallery li {
    width: 28.3%;
  }
  
  #gallery li:nth-child(4n) {
    clear: left;
  }
  
  /*******************************
  ABOUT
  *******************************/
  
  .profil-photo {
    float: left;
    margin: 0 5% 80px 0;
  }

  /*******************************
  CONTACT
  *******************************/
  
  
  .my-container img.contact-pic {
    position: absolute;
    top: 22%;
    left: 3%;
    margin-right: auto;
    width: 95%;
    opacity: 0.3;
    border-radius: 10%;
    max-width: 95%;
  }
  
@media screen and (min-width: 700px) {
  
  /*******************************
  HEADING
  *******************************/
  
    nav{
      background: none;
      float: right;
      font-size 1.125em;
      margin-right: 5%;
      text-align: right;
      width: 45%
    }
  
    #logo {
      float: left;
      margin-left: 5%;
      text-align: left;
      width 45%;
    }
    
    h1 {
      font-size: 2.5em;
    }
    
    h2 {
      font-size: 0.825em;
      margin-bottom: 20px;
    }
    
    header { /*border */
      border-bottom: 5px solid #599a68; 
      margin-bottom: 60px;
    }
    
  /*******************************
  PORTFOLIO - Galler
  *******************************/
    
  .image {
    width: 100%;   
  }

  .image img {
   transition: all 1s ease;
  }

  .image:hover img {
    transform: scale(1.25);
  }

  /*******************************
  CONTACT
  *******************************/
  
  
  .my-container img.contact-pic {
    position: absolute;
    top: 20%;
    left: 3%;
    margin-right: auto;
    margin-left: auto;
    width: 95%;
    opacity: 0.3;
    border-radius: 10%;
  }
  
}