html, body {
  height: 100%; }

body {
  min-width: 1280px;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  background: linear-gradient(to left, #7275a4, #4a4872, #302d4a) fixed;
  background-repeat: no-repeat;
  background-size: cover;
  font-family: Arial, Helvetica, sans-serif; }

.content {
  margin-top: 56px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap; }

.card-wrapper {
  width: 33.3333%; }

.wrapper {
  width: 33.3333%;
  margin-bottom: 5%; }

.inner-wrapper {
  margin: 0 auto;
  width: max(32vw, 410px);
  height: max(32vw, 410px); }

.left-card {
  background: linear-gradient(135deg, #5464bf, #6a99ca, #6eb0be);
  left: 5vw;
  margin-left: 15%; }

.card {
  margin-top: 3.6%;
  width: 57%;
  min-height: 55vh;
  height: 80%;
  color: #f0f0f0;
  border-radius: 12px;
  justify-content: space-around;
  flex-direction: column;
  font-family: BunchBlossoms;
  flex: 1;
  display: flex;
  box-shadow: 0 0 24px 10px rgba(15, 15, 15, 0.4); }
  .card .feature {
    width: 80%;
    margin: 4vh auto;
    font-size: 20pt; }
    .card .feature p {
      word-break: break-word;
      hyphens: auto;
      -webkit-hyphens: auto;
      -webkit-hyphenate-character: "\2010";
      -webkit-hyphenate-limit-after: 1;
      -webkit-hyphenate-limit-before: 3;
      -moz-hyphens: auto; }

.progress {
  background-color: rgba(15, 15, 15, 0.3);
  width: 100%;
  height: 30px;
  border-radius: 15px;
  position: relative;
  box-shadow: 0 8px 16px 6px rgba(15, 15, 15, 0.2); }
  .progress.week::after {
    border-radius: 15px;
    position: absolute;
    content: "";
    background: linear-gradient(135deg, #ca689e, #de8ca1, #dbbc88);
    height: 100%;
    z-index: 200; }

.right-card {
  right: 5vw;
  background: linear-gradient(135deg, #ca689e, #de8ca1, #dbbc88);
  margin-left: calc(85% -  57% ); }

.fruits {
  display: flex;
  width: max(32vw, 410px);
  height: max(32vw, 410px);
  z-index: 0; }
  .fruits .circle {
    flex: 1;
    height: 100%;
    color: #f0f0f0;
    justify-content: space-around;
    position: relative;
    background: linear-gradient(135deg, #fa90a3, #d589d2, #bb8ae6);
    border-radius: 50%;
    box-shadow: 0 0 20px 20px rgba(0, 0, 0, 0.23);
    animation: pulse 2500ms infinite ease-in-out; }

.image {
  height: calc( max(32vw, 410px)  *  0.7 );
  width: calc( max(32vw, 410px)  *  0.7 );
  border-radius: 50%;
  margin-top: calc(-100% + ((100% - 100% *  0.7 ) / 2));
  margin-left: calc((100% - 100% *  0.7 )/ 2);
  background-repeat: no-repeat;
  background-size: calc( max(32vw, 410px)  *  0.7 );
  z-index: 20; }

.fixed-circle {
  width: max(32vw, 410px);
  height: max(32vw, 410px);
  background: linear-gradient(135deg, #fa90a3, #d589d2, #bb8ae6);
  border-radius: 50%;
  z-index: 10;
  margin-top: -100%; }

.head {
  font-size: 30pt;
  color: #f0f0f0;
  width: 100%;
  text-align: center;
  font-family: BunchBlossoms; }

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.93; }
  50% {
    transform: scale(1.2);
    opacity: 0.70; }
  100% {
    transform: scale(1);
    opacity: 0.93; } }

@font-face {
  font-family: 'BunchBlossoms';
  src: url(./BunchBlossomsPersonalUse-0nA4.woff2) format("woff2"); }
