/* Background color */

html {
    animation: colorchange 100s;
    /* animation-name followed by duration in seconds*/
    /* you could also use milliseconds (ms) or something like 2.5s */
    -webkit-animation: colorchange 100s;
    /* Chrome and Safari */
    animation-iteration-count: infinite;
}

.svgface {
    animation: svgcolorchange 100s;
    /* animation-name followed by duration in seconds*/
    /* you could also use milliseconds (ms) or something like 2.5s */
    -webkit-animation: svgcolorchange 100s;
    /* Chrome and Safari */
    animation-iteration-count: infinite;
}

button {
    padding: 5px;
    margin: 2px 0px;
    border: none;
    background-color: black;
    color: white;
    display: block;
}


.sunny {
    position: absolute;
    bottom: -7px;
    right: -7px;
    width: 70px;
    height: 50px;
    margin: 0;
}

.galleries {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 20px;


}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  grid-auto-flow: row;
  grid-gap: 10px;
  align-items: stretch;
  justify-content: start;
  align-content: start;



}

.gallery img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.modal  {
  display: grid;

}

.modal img {
  width: 100%;
  height: auto;
  object-fit: cover;

}

figure {
  margin: 0;
  padding: 0;
}


.dissemination {
  margin: 20px 10px 20px 0;
  display: flex;
  height: 150px;
  width: 35vw;
  background-color: #fbfbfb;
  background-image: url("pdf-text-file.svg");
  background-position: left;
  background-repeat: no-repeat;
  background-size: contain;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.dissemination p {
    text-align: center;
    padding: 20px 70px;
    color: #4164aa;
    font-size: 20px;
}

.dissemination:hover {
    background-color: #17c3b2;
}


.dissemination p:hover {
    color: white;
}
 
.downloads {
  display: flex;
  flex-wrap: wrap;
    justify-content: stretch;
  align-items: stretch;
  align-content: stretch;
}

.subscribe-please {
  background-color: black;
  border-radius: 100px;
  text-align: center;
  margin-top: 50px;
  margin-right: 50px;
  animation: wiggle 2s infinite;
  margin-left: -25px;
}

.subscribe-please:hover {
  animation: none;
}

@media (max-width: 500px) {


.dissemination {
  width: 90vw;
  }
}


div.gallery img {
  width: 100%;
  height: auto;
}



.responsive {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
}



@media only screen and (max-width: 500px) {
  .responsive {
    grid-template-columns: 1fr;
  }
}
