html,
body {
  background: #ebeded;
  font-family: "IBM Plex Sans", sans-serif;
  text-transform: uppercase;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
h1 {
  padding: 20px auto;
  color: #007c7e;
}
div.container {
  margin: 0 auto 20px;
  max-width: 980px;
  text-align: center;
}
div.month__container {
  background: #ffffff;
  display: inline-block;
  margin: 10px;
  padding: 0 5px;
  max-width: 200px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
div.month__container:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}
div.month__container .month__word {
  width: 200px;
  height: 150px;
  border-bottom: 1px solid #dedfe2;
  background: #ffffff;
  color: #4d4e52;
}
div.month__container .month__word:hover {
  cursor: text;
  color: #007c7e;
}
div.month__container .month__word span {
  pointer-events: none;
}
div.month__container .month__name {
  background: #ffffff;
  display: block;
  width: 100%;
  position: relative;
  padding: 5px 0;
  font-size: 16px;
  margin: 0;
  color: #a2a3a5;
}