body {
  margin: 50px 200px;
  padding: 0px;
  text-align: center;
  font-size: 16px;
  font-family: "Courier New";
  color: white;
  background-color: black;
}


body a{
  color: #a05ac5;
}

body a:hover{
  text-transform: uppercase;
  font-weight: bold;
}

.container{
  display: grid;
  grid-template-columns: auto auto;
  grid-gap: 15px;
}

.gallery-container{
  display:flex;
  flex-direction:column;
}

.gallery-item{
  width: 100%;
  padding: 10px 0px;
  position: relative;
}

.gallery-item .image{
  width: 100%;
  height: auto;
}

.gallery-item .image img{
  width: 100%;
  height 100%;
  cursor: pointer;
  transition: .5s ease-in-out;
  -moz-transition: opacity .25s ease-in-out;
  -webkit-transition:  .25s ease-in-out;
}

.gallery-item:hover .image img{
  opacity: 0.25;
}

.gallery-item .text{
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 4;
  transition: .3s ease-in-out;
}

.gallery-item:hover .text{
  opacity: 1;
}

.stickercontainer{
  display: grid;
  grid-template-columns: 5;
  grid-gap: 15px;  
}
  
.stickers{
  width: 200px;
  height: 200px;
  padding: 10px 0px;
  position: relative;
  display:flex;
  flex-direction:column;
}