body {
  background-color: #bac8ff;
  font-family: Verdana, sans-serif;
}

.container {
  width: 60rem;
  margin: 2rem auto;
}
@media (max-width: 62rem) {
  .container {
    width: calc(100vw - 2rem);
    margin: 2rem auto;
  }
}

.grid {
  display: grid;
  grid-template-columns: 50% 50%;
}
@media (max-width: 62rem) {
  .grid {
    grid-template-columns: 100%;
  }
}

.col {
  background-color: #dbe4ff;
  border: 1px solid #ced4da;
  border-radius: 2rem;
  margin: 1rem;
  padding: 1rem;
}

.col h2 {
  text-align: center;
}

.col img {
  width: 100%;
  height: auto;
}

.footer {
  position: fixed;
  bottom: 0.5rem;
  left: 0;

  display: flex;
  width: 100%;
}

.footer a, .footer a:visited {
  width: 100%;
  text-align: center;
  text-decoration: none;
  color: #1971c2;
}

.footer a:hover {
  text-decoration: underline;

}
