@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wdth,wght@0,125,300;1,125,300&display=swap');

header{
  text-align: center; /* Keeps text left-aligned */
}
body{
  font-family: "Archivo", sans-serif;

  /* background-image: url('spr_space_scan.png'), url('scrolling.gif'); */
  background-repeat: repeat, repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: auto, auto;
  
}

article {
  background-color: #FFFFCC;
  border-radius: 20%;
  flex: 1;
  padding: 5%;
  text-align: left;
  box-shadow: inset 0.2em 0.2em 0.2em 0 rgba(255,255,255,0.5), inset -0.2em -0.2em 0.2em 0 rgba(0,0,0,0.5);
}

.wrapper{
  text-align: center; 
  flex: 1;
  padding: 2vw;
  font-size: 100%;
  margin-left: 33.333%;
  margin-right: 33.333%;

}

img:hover {
  transform: scale(1.1, 1.1);
  transition: all 0.25s ease;
}

img:not(:hover){
  transform: scale(1, 1);
  transition: all 0.25s ease;
}

img{
  margin-left:auto;
  margin-right:auto;
}

@media only screen and (max-width:640px) {
  .wrapper {
    margin: 10px;
  }
}