﻿.card {
  display: inline-block;
  flex: 1;
  position: relative;
  min-width: 300px;
  height: 10rem;
  margin: .1rem;
  font-family: 'Lato', sans-serif;
  text-align: center;
  text-decoration: none;
  color: white;
  background-color: #6E6E6E;
  overflow: hidden;
}
.card__icon {
  display: block;
  position: absolute;
  top: 10px;
  right: 0;
  width: 50px;
  line-height: 2rem;
  text-align: center;
  transition: all 0.2s ease-in-out;
}
.card__circle {
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background-color: white;
  border-radius: 50%;
  opacity: 0.2;
  transition: all 0.4s ease-in-out;
}
.card > p {
  position: relative;
  top: 50%;
  margin: 0 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: translateY(-50%);
  transition: all 0.2s ease-in-out;
}
.card:hover .card__circle {
  transform: scale(70);
  opacity: 0.8;
}
.card:hover > p,
.card:hover .card__icon {
  color: #6E6E6E;
}

.container {
  display: flex;
  flex-flow: row wrap;
  align-content: stretch;
}