
/* CSS Document */

body {
  background-image: url("irl-imgs/web-bg-gather-pixel-lg.jpg");
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}


div.scroll-container {
  background-color: rgb(0, 128, 255);
  overflow: auto;
  white-space: nowrap;
  padding: 0px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}


div.scroll-container img {
  padding: 10px;
}


* {
  box-sizing: border-box;

}

/* The grid: Four equal columns that floats next to each other */
.column {
  float: left;
  width: 20%;
  padding: 1px;
}

/* Style the images inside the grid */
.column img {
  opacity: 0.5; 
  cursor: pointer; 
}

.column img:hover {
  opacity: 1;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* The expanding image container */
.container {
  position: relative;
  display: none;
}

/* Expanding image text */
#imgtext {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: white;
  font-size: 20px;
}

/* Closable button inside the expanded image */
.closebtn {
  position: absolute;
  top: 10px;
  right: 15px;
  color: none;
  font-size: 0px;
  cursor: pointer;
}
