body {
    background-color: rgb(29, 28, 28);
    overflow-x: hidden; 
    margin: 0;
    padding: 0;
    font-family: 'Architects Daughter';
}


.Grid-Container-Games{
  display: grid;
  position: relative;
  top: 100px;
  margin-left: 40px;
  margin-right: 40px;
  grid-template-columns: 33.3333% 33.3333% 33.3333%;
  grid-row-gap: 80px;
}
.Header-Games{
  background-color: #2f446b;
  display: grid;
  justify-content: center;
  align-items: center;
  grid-column: 1/4;
  max-height: 100%;
  color: #ffffff;
  font-size: 35px;
  border: 2px solid #ffffff;
}
.Game-Style{
  width: 380px;
  max-width: 100%;
  height: 240px;
  margin: auto;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  cursor: pointer;
}
.Header-Games, .Game-Style{
  box-shadow: 
    #000000 1px 1px 15px 1px,
    #000000 -1px -1px 15px 1px
  ;
}

.BO1{
  background-image: url(https://drive.google.com/uc?id=1IGe6QujPtFUHau46oxsroWIcrDkDpxVn);
}
.BO2{
  background-image: url(https://drive.google.com/uc?id=1rQPr7maarLFSPcIzE8n_IyESY8E8LX_a);
}
.BO3{
  background-image: url(https://drive.google.com/uc?id=1CvOfWXUnOc-au3vcsBkTkKPUPiRmeSEx);
}

.Hover-Layer{
  background: #1d1d5c86;
  filter: saturate(0.4);
  width: 380px;
  height: 0px;
  visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 40px;
  font-weight: bolder;
}
.Downloads-Text{
  background: rgb(29, 28, 28);
  border: 2px solid white;
  border-radius: 5px;
  padding:10px;
  opacity: 0;
}

.BO1:hover .Hover-Layer, .BO2:hover .Hover-Layer, .BO3:hover .Hover-Layer{
  visibility: visible;
  height: 240px;
  transition: 800ms;
  border: 1px solid #6565a5;
  box-shadow: 
    #3f7daf 1px 1px 15px 1px,
    #000000 -1px -1px 15px 1px
  ;
}
.BO1:hover .Downloads-Text, .BO2:hover .Downloads-Text, .BO3:hover .Downloads-Text{
  opacity: 1;
  transition: 700ms;
}



/*Media Queries for responsive Design*/

@media (max-width:1250px) {
  .Grid-Container-Games{
    grid-template-columns: 50% 50%;
  }
  .Header-Games{
    grid-column-start: 1;
    grid-column-end: 3;
  }
  
}

@media (max-width:850px) {
  .Grid-Container-Games{
    grid-template-columns: 100%;
  }
  .Header-Games{
    grid-column-start: 1;
    grid-column-end: 2;
  }
     
}

@media (max-width:425px) {
  .Header-Games{
    margin-left: 10px;
    margin-right: 10px;
  }
  .Game-Style{
    width: calc(100% - 60px);
  }

  .Hover-Layer{
    display: none;
  }
    
    
}


