html,
body {
  height: 100%;
  padding: 0;
  margin: 0;
  background-color: rgb(164,182,220);
}
header {
  height: fit-content;
}
.page-wrapper {
  min-height: 100%;
  margin-bottom: -2em;
}
.page-wrapper:after {
  content: "";
  display: block;
}
main {
  width: 80%;
  margin: 20px auto 150px;
  text-align: center;
}
#main-title {
  text-transform: uppercase;
  font-family: cursive;
}
ul.no-bullet > li {
  list-style: none;
  text-align: left;
}
section {
  padding: 5% 1%;
  margin: 30px 0;
  min-height: 400px;
  background-color: rgba(147,242,235,0.2);
}
footer, .page-wrapper:after {
  height: 2em;
}
footer {
  width: 300px;
  text-align: center;
  margin: 5px auto;
}
nav {
  position: fixed;
  background-color: #fff;
  padding: 1em;
  z-index: 1;
}
nav > a {
  margin: 1em;
}
.strike {
  text-decoration: line-through;
}
#exercises li {
  display: inline-block;
}

/* cards: */
.card {
  height: 300px;
  width: 300px;
  display: inline-block;
  box-shadow: 1px 1px 10px 4px black;
  margin: 20px;
  border: 2px solid black;
  text-decoration: none;
  background-color: lightgrey;
  transform: scale(1);
  transition: all 400ms ease-in-out;
  text-align: center;
}
.card:hover {
  transform: scale(1.25);
  background-color: #fff;
  transition: all 400ms ease-in-out;
}
.card > h1 {
  color: #000;
  font-family: serif;
}
.card > img {
  width: 100px;
  height: 100px;
}
