﻿<style>

/* The grid: Four equal columns that floats next to each other */
.column1 {
  /*float: left;*/
  width: 25%;
  padding: 10px;
  
}

/* Style the images inside the grid */
.column1 img {
  opacity: 0.8; 
  cursor: pointer; 
}

.column1 img:hover {
  opacity: 1;
}

/* Clear floats after the columns */
.row1:after {
  content: "";
  display: table;
  clear: both;
}

/* The expanding image container */
.container1 {

}

/* Expanding image text */
#imgtext1 {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: Red;
  font-size: 20px;
}

/* Closable button inside the expanded image */
.closebtn1 {
  position: absolute;
  top: 10px;
  right: 15px;
  color: white;
  font-size: 35px;
  cursor: pointer;
}
</style>