@import url("https://fonts.googleapis.com/css?family=Montserrat:400,400i,700");
html, body {
  background-color: #FFEAEE;
  font-family: "Montserrat", sans-serif;
}

body {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coffee {
  position: absolute;
  width: 20rem;
  height: 30rem;
}
.coffee__fold {
  position: relative;
  width: 100%;
  height: 2.5rem;
  background-color: #DBAE67;
  -webkit-clip-path: polygon(5% 0, 95% 0, 100% 100%, 0% 100%);
  clip-path: polygon(5% 0, 95% 0, 100% 100%, 0% 100%);
}
.coffee__fold::before, .coffee__fold::after {
  content: "";
  position: absolute;
  display: block;
  height: 3px;
  background: #c68c2f;
  opacity: 0.5;
}
.coffee__fold::before {
  width: 80%;
  left: 10%;
  top: 25%;
}
.coffee__fold::after {
  width: 90%;
  left: 5%;
  top: 50%;
}
.coffee__middle {
  width: 100%;
  height: 27.5rem;
  background-color: #070707;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
  box-shadow: 4px 8px 10px rgba(7, 7, 7, 0.25);
}

.middle__top {
  width: 100%;
  height: 50%;
  background-color: #DBAE67;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%23A15E49' fill-opacity='0.5'%3E%3Cpath fill-rule='evenodd' d='M11 0l5 20H6l5-20zm42 31a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM0 72h40v4H0v-4zm0-8h31v4H0v-4zm20-16h20v4H20v-4zM0 56h40v4H0v-4zm63-25a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm10 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM53 41a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm10 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm10 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-30 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-28-8a5 5 0 0 0-10 0h10zm10 0a5 5 0 0 1-10 0h10zM56 5a5 5 0 0 0-10 0h10zm10 0a5 5 0 0 1-10 0h10zm-3 46a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm10 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM21 0l5 20H16l5-20zm43 64v-4h-4v4h-4v4h4v4h4v-4h4v-4h-4zM36 13h4v4h-4v-4zm4 4h4v4h-4v-4zm-4 4h4v4h-4v-4zm8-8h4v4h-4v-4z'/%3E%3C/g%3E%3C/svg%3E");
}

.middle__bottom {
  width: 100%;
  height: 50%;
  background-color: #7F5E4D;
  display: flex;
  align-items: center;
  justify-content: center;
}
.middle__bottom .coffee__label {
  position: relative;
  width: 80%;
  height: 6.5rem;
  background: #FFEAEE;
  display: flex;
  align-items: center;
  justify-content: center;
}
.middle__bottom .coffee__label::before, .middle__bottom .coffee__label::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 15px;
  background-image: radial-gradient(closest-side, #FFEAEE, #FFEAEE 85%, transparent 100%);
  background-repeat: repeat-x;
  background-size: 10px;
}
.middle__bottom .coffee__label::before {
  top: -4px;
}
.middle__bottom .coffee__label::after {
  bottom: -4px;
}
.middle__bottom .coffee__label .coffee__info {
  width: 90%;
  height: 75%;
  margin: 0 auto;
  border: 1px solid #DBAE67;
  text-align: center;
}
.middle__bottom .coffee__label .coffee__info p:nth-of-type(1) {
  color: #A15E49;
  text-transform: uppercase;
  line-height: 1.5;
  font-size: 1.5rem;
  font-weight: 600;
}
.middle__bottom .coffee__label .coffee__info p:nth-of-type(2) {
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.15;
  font-size: 0.5rem;
}
.middle__bottom .coffee__label .coffee__info p:nth-of-type(3) {
  text-transform: capitalize;
  line-height: 2;
  font-size: 0.9rem;
  color: #A15E49;
}