.image > img {
  max-width:100%;
}

.info h2 {
  font-size: 2.5rem;
  font-family: serif;
  margin: 0;
}
.info h3 {
  margin-top: 0;
  font-size: 1.2rem;
}
.timer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-auto-flow: column;
  text-align: center;
}
.timer span {
  padding: 15px;
  margin: 0 .5rem;
}
.timer span:nth-child(2n-1) {
  font-size: 1.5rem;
  font-weight: bold;
  font-family: sans-serif;
  background-color: darkred;
  color: #fff;
  border-radius: 15px 15px 0 0;
}
.timer span:nth-child(2n) {
  font-size: 1.2rem;
  font-weight: bold;
  font-family: sans-serif;
  background-color: black;
  color: #fff;
  border-radius: 0 0 15px 15px;
}
