.date-time {
  width: 100%;
  text-align: center;
  padding: 0;
  font-weight: bold;
  line-height: 1.25;
  max-width: 120px;
}
@media (min-width: 576px) {
  .date-time {
    max-width: 200px;
  }
}
.date-time .date,
.date-time .time {
  width: 100%;
  border: 3px solid #dfdfdf;
}
.date-time .date {
  border-bottom: none;
  background-color: #008674;
  border-radius: 10px 10px 0 0;
}
.date-time .time {
  border-top: none;
  background-color: #dfdfdf;
  color: #008674;
  border-radius: 0 0 10px 10px;
}
.date-time .month,
.date-time .day {
  font-size: 1.2rem;
  text-transform: uppercase;
}
@media (min-width: 576px) {
  .date-time .month,
  .date-time .day {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  .date-time .month,
  .date-time .day {
    font-size: 2rem;
  }
}