body {
  background-color: rgb(38,46,50);
  font-family:trebuchet ms,bitstream vera sans,verdana,helvetica,arial,sans-serif; font-size: 8pt;
  margin: 0;
  padding: 0;
  border: 0;
}

h1 {
  margin: 0px auto;
  text-align: center;
  font-size: 4em;
  color: white;
}

h2 {
  margin: 10px auto;
  width: 100%;
  text-align: center;
  font-size: 4em;
  color: white;
  background-color: rgb(48,56,70);
}

.grid-container {
  display: flex;
  flex-wrap: wrap;
  grid-template-columns: auto auto auto;
  width: 90%;
  margin: auto;
}

.box-link{ 
  position:absolute; 
  width:100%;
  height:100%;
  top:0;
  left: 0;
  z-index: 1;
} 




.grid-item {
  flex-grow: 1;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.8);
  max-width: 500px;
  min-width: 20%;
  padding:0px;
  min-height: 8em;
  font-size: 30px;
  position: relative;
  -webkit-text-stroke: 1px black;
  color: white;
  font-weight: bold;
  overflow:hidden;
}
.grid-item label {
  display: table;
  width:100%;
  height:100%;
}

.grid-item:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.grid-item label p {
  margin: 0;
  display:table-cell;
  width:100%;
  height:100%;
  text-align: center;
  vertical-align: middle;
}

.grid-item img {
  width: 500px;
  transition: width 1s, left 1s, top 1s;
  position:absolute;
  left: 0px;
  top: 0px;
  z-index: -99;
}
.grid-item:hover img {
  width: 700px;
  left: -100px;
  top: -100px;
}

