* {
    margin: 0px;
    padding: 0px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
body{
    height: auto;   
    min-height: 100vh;    
    background-color: lightgrey;
    /*background-image: url("../Ph_Gall_imgs/back.jpg");*/
    background-repeat: no-repeat;
    background-size: cover;               
}
.container {
    height: 100vh;   
}
.top {
    padding: 10px;
    text-align: center;
    width: 100%;
    font-size: 5vw;
    color: white;
    font-weight: 700;
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
    background-color: rgb(231, 90, 24);
}

.content {  
    height: 100vh;
    width: 100%;
     /*display:inline-flexbox;*/
      -ms-flex: 1;  /* IE 10 */  
    flex: 1;
    /*float:left;*/
    display: flex;             
    flex-wrap: wrap;
    flex-direction: row;            
    justify-content:space-around;
    align-items: flex-start;   
     
}

.image {
  
    width: 280px;
    height: auto;   
    border-radius: 10px 10px;
    margin: 25px;
    box-shadow: 5px 5px 10px 3px rgb(71, 72, 155);    
    background-color:white;
    position: relative;
    overflow: hidden;
    max-width: 100%;
    transition: all 0.5s ease-in-out;
}
.image:hover img
{
    transform: scale(1.1);
    
}
.image img {
    border-radius: 10px 10px 0px 0px;
    display: block;
    height: 265px;
    width: 100%;    
    transform: scale(1);    
}
.image img:hover{opacity:0.5;}
.bottomImg
{
    padding: 15px;
    text-align: center;
}
.image a
{
    text-decoration: none;
    color:red;
    font-size:1.8em;
    text-shadow: 2px 2px 10px #000000;
}
.image a:hover{
    opacity:0.5;
}
@media only screen and (max-width:1300px) {
    body{     
        background-size:auto; 
        /*background-size:cover;*/
    }
}
@media only screen and (max-width:1000px) {
    body{     
        background-size:auto; 
    }
}
@media only screen and (max-width:600px) {
    body{       
        background-size:auto; 
    }
    .image{
        width:auto;
        height:auto;
    }
    .image img 
    {
        height: 185px;
        width: 185px;
    }
    .image a{
        font-size: 1em;
    }
}
@media only screen and (max-width:360px) {
    .content{
        align-items: center;
        justify-content: center;    
    }
    .image{                
        width:auto;
        height:auto;                
    }
    .image img 
    {            
        height:150px;
        width: 150px;
    }
    .image a{
        font-size: .8em;
    }
}