    * {
      box-sizing: border-box;
    }

    .desc {
        font-family: 'ubuntu', sans-serif;
        padding: 10px 0 15px 0;
        font-weight: 900;
        text-align: center;
    } 

    .img {
      border: 1px solid #ccc;
      transition: 0.3s;    
      display: inline-block;
      font-size: initial; 
      width: 30.33333%;
      padding: 0 5px;       
    }

    .img:hover {
        border: 1px solid #777;
    }

    .img img {
      max-width: 100%;
      border-bottom: 1px solid #ccc; 
    }

    @keyframes textAnim {
        from{color: red;}
        to {color: navy;}
    }

    #comingsoon {
        font-family: 'Poppins', sans-serif;
        text-align: center;
        font-size: 2.5em;
        -webkit-animation: textAnim 5s infinite;
    }

    @media only screen and (max-width: 700px) {
        #photoalbum {
            text-align: left;
        } 
    }

    @media only screen and (max-width: 650px){   
      .img {
        width: 100%;
        margin: 5px 10px;
      }
        
    }

    @media only screen and (max-width: 650px) {
        #photoalbum {
            text-align: center;
        }
    }

    @media only screen and (max-width: 500px){
        
      .img {
        width: 100%;
        margin: 5px 0;  
      }        
        
    }

    /* test program custom coded */

    /*
    div.img {
        border: 1px solid #ccc;
        transition: 0.2s;
    }

    div.img:hover {
        border: 1px solid #777;
    }

    div.img img {
        width: 100%;
        height: auto;
    }

    div.desc {
        padding: 15px;
        text-align: center;
    }

    * {
        box-sizing: border-box;
    }

    .responsive {
        padding: 0 6px;
        float: left;
        width: 24.99999%; 
    }

    @media only screen and (max-width: 700px){
        .responsive {
            width: 49.99999%;
            margin: 6px 0;
        }
    }

    @media only screen and (max-width: 500px){
        .responsive {
            width: 100%;
        }
    }

    .clearfix:after {
        content: "";
        display: table;
        clear: both;
    }
    */