@charset "UTF-8";
/* CSS Document */
/* Tom Hunter Photography © */



/* THUMBNAIL CSS © */


.thumbnail {
  width: 150px;           /* Sets a standard small size */
  height: auto;
  border: 1px solid #ddd; /* Adds a clean border */
  border-radius: 4px;     /* Rounds the corners */
  padding: 0;           /* Gives spacing between image and border */
  transition: 0.3s;
}

/* Adds a shadow effect when hovered */
.thumbnail:hover {
  box-shadow: 0 0 4px 2px rgba(0, 140, 186, 0.5);
}



.mainimg {
  width: 300px;           
  height: auto;
  border: 1px solid #ddd; 
  border-radius: 4px;     
  padding: 0;           
  transition: 0.3s;
}

