/*
div .sub {
    width: 100%;
    margin: 0;
    padding: 0;
}

.eraser
{
    width: 100%;
    background-repeat: no-repeat;
    background: url('../img/Gaskar\ Andasibe\ Janvier\ 2020-84.jpg');
    background-size: cover;
    height: 100%;
}

.subheader
{
    display: flex;
    height: 10%;
}

/* .sub
{
    background: blue;
    background-size: contain;
} */

@import url(https://fonts.googleapis.com/css?family=Sigmar+One);

/* pokemone pictures */

.pokemon {
  width: 200px;
  height: 200px;
  /* center content using flex box */
  display: flex;
  justify-content: center;
  align-items: center;
  /* overlay */
  box-shadow: 0 0 0 100px inset, 0 0 5px grey;
  /* hover out transition */
  transition: box-shadow 1s;
  float: left;
  margin: 10px;
}


/* pokemone names */

.pokemon::after {
  width: 80%;
  height: 80%;
  display: block;
  white-space: pre;
  font: 15pt 'sigmar one';
  color: white;
  border: 2px solid;
  text-align: center;
  /* center content using flex box */
  display: flex;
  justify-content: center;
  align-items: center;
  /* hover out transition */
  transition: opacity 1s .5s;
}


/* reveal pokemone picture on hover */

.pokemon:hover {
  box-shadow: 0 0 0 5px inset, 0 0 5px grey, 0 0 10px grey inset;
  transition: box-shadow 1s;
}


/* hide pokemone name on hover */

.pokemon:hover::after {
  opacity: 0;
  transition: opacity .5s;
}

#bulbasaur {
  /* background-image: url(../img/Gaskar_Andasibe_Janvier_2020-11.jpg); */
  color:  #ccd6a6dc;
  background-size: cover;
}

#bulbasaur::after {
  content: 'Andasibe';
}

#charmander {
  /* background-image: url(../img/Gaskar_Andasibe_Janvier_2020-62.jpg); */
  color: #a4be7bea;
  background-size: cover;
}

#charmander::after {
  content: 'Andasibe1'
}

#squirtle {
  /* background-image: url(../img/hero-bg.jpg); */
  color: #5f8d4eb9;
  background-size: cover;
}

#squirtle::after {
  content: 'Andasibe2'
}

#pikachu {
  /* background-image: url(../img/whyus.jpg); */
  color: #285430da;
  background-size: cover;
}

#pikachu::after {
  content: 'Andasibe3'
}

#wrapper {
  width: 500px;
  height: 500px;
  margin:  auto;
}

@media only screen and (max-width: 767px) {
#wrapper{
    display: none;
}
}

@media only screen and (max-width: 1200px) {
  #wrapper {
    width: 300px;
    height: 300px;
    margin:  auto;
  }
  .pokemon {
    width: 130px;
    height: 130px;
  }
}
