html { 
  background-image: radial-gradient(#c1c274, #4856f0);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-color: #5a67fa;
  height: 100%;
}

#header {
  text-align: center;
  font-family: 'Roboto Slab', serif;
}

#container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-family: Arial, Helvetica, sans-serif;
}

.card {
  display: flex;
  flex-direction: column;
  background: #0e9401;
  overflow: hidden;
  margin: 1vw;
  padding: 1vw;
  max-width: 90vw;
}

.fig {
  background-color: white;
  padding: 1vw;
}

.image {
  width: 100%;
}

.link {
	text-align: center;
}

.link:link {
  color: white;
}

.link:visited {
  color: #f2b252;
}

.link:hover {
  text-decoration: underline wavy;
}

@media (min-width: 700px) {
  .card {
    max-width: 40vw;
  }
}

@media (min-width: 1100px) {
  .card {
    max-width: 25vw;
  }
}