body {
  margin: 0 auto;
  padding: 0;
  font-family: Georgia, serif;
  background: azure;
}

h1 {
  text-align: center;
  color: cadetblue;
}

.container {
  position: relative;
  top: 60px;
  text-align: center;
  min-width: 600px;
  min-height: 400px;
}

.card {
  position: relative;
  display: inline-block;
  width: 160px;
  height: 200px;
  font-family: Helvetica, sans-serif;
  color: dimgray;
  border: 1px solid #CCC;
  border-radius: 10px;
  background: white;
  margin: 0 5px;
  padding-top: 5px;
}

.card p {
  font-weight: 600;
}

.suit, .rev {
  text-transform: uppercase;
  text-align: center;
  position: absolute;
  width: 100%;
  margin: 0;
}

.suit {
  bottom: 25px;
}

.rev {
  bottom: 90px;
  opacity: 0.2;
}

#deal {
  display: block;
  text-decoration: none;
  font-weight: 600;
  color: cadetblue;
  background: white;
  width: 100px;
  border: 1px solid #CCC;
  border-radius: 4px;
  margin: 20px auto;
  padding: 20px;
}

#deal:hover {
  background: cadetblue;
  color: white;
}

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  color: white;
  background: dimgray;
  height: 70px;
}

footer h6 {
  padding-left: 25px;
  padding-top: 15px;
}