@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
* {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #222327;
}

.week{
  display: flex;
  gap: 5px;
  height: 120px;
  padding: 20px 40px;
  background: #fff;
  border-radius: 10px;
}

.week li{
  list-style: none;
  height: 80px;
  width: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #666;
  border-radius: 20px;
  font-size: 1.25rem;
}

.week li.current{
  position: relative;
  background: #29fd53;
  height: 100px;
  width: 100px;
  font-size: 1.65rem;
  color: #222327;
  border: 6px solid #222327;
  transform: translateY(-70px);
  font-weight: 500;
  cursor: pointer;
}
.week li.current::before{
  content: '';
  position: absolute;
  left: -36px;
  top: 44px;
  width: 30px;
  height: 30px;
  background: #fff;
  border-top-right-radius: 10px;
  box-shadow: 5px -6px #222327;
}
.week li.current::after{
  content: '';
  position: absolute;
  right: -36px;
  top: 44px;
  width: 30px;
  height: 30px;
  background: #fff;
  border-top-left-radius: 10px;
  box-shadow: -6px -6px #222327;
}

.week li.current h1{
  position: absolute;
  transform: translateY(76px);
  font-size: 1.6rem;
  color: #222327;
}

.week li.current h5{
  position: absolute;
  transform: translateY(102px);
  font-size: 0.55rem;
  font-weight: 500;
  color: #222327;
}
.week li.current h3{
  position: absolute;
  transform: translateY(-62px);
  font-size: 0.85rem;
  font-weight: 500;
  color: #fff;
}