@import url('https://fonts.googleapis.com/css?family=Poppins:500,600,800&display=swap');

.body {
  text-align: center;
  padding: 60px;
}

/* badge styles */
.badge,
.badge * {
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.badge {
  position: relative;
  width: 140px;
  height: 140px;
  display: inline-block;
}
.badge__big {
  width: 140px;
  height: 140px;
  border-radius: 5px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  position: relative;
  color: #fff;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 20px 15px 20px 5px;
}

.badge__big-top,
.badge__big-bottom {
  width: 100%;
  flex: 0 0 100%;
  line-height: 1;
  font-size: 12px;
  font-weight: 600;
}
.badge__big-mid {
  font-size: 20px;
  align-items: center;
  line-height: 1;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.badge__big-number {
  font-size: 45px;
  font-weight: 800;
  line-height: 1;
}
.badge__small {
  background: #fcd157;
  color: #231f20;
  font-size: 10px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(65%, -80%);
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 9px;
  line-height: 1.1;
  font-weight: 500;
}

.badge__small a {
  color: #231f20;
  text-decoration: none;
}
