* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
p {
  text-align: center;
  margin-bottom: 4rem;
}
.pricing {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  .plan {
    background-color: lightyellow;
    padding: 2.5rem;
    margin: 12px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    border:1px solid #3a4968;

    h2 {
      font-size: 22px;
      margin-bottom: 12px;
    }

    .price {
      margin-bottom: 1rem;
      font-size: 30px;
    }

    ul.features {
      list-style-type: none;
      text-align: left;
      li {
        margin: 8px;
        .fas {
          margin-right: 4px;
        }
        .fa-check-circle {
          color:green;
        }
        .fa-times-circle {
          color:grey;
        }
      }
    }

    &.popular {
      /* border: 3px dashed #3a4968; */
      /* transform: scale(1.08); */
      position: relative;
      background:lightyellow;

      span {
        position: absolute;
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
        background-color: #3a4968;
        color: #fff;
        padding: 7px 20px;
        font-size: 16px;
        border-radius: 5px;
      }
    }

    &:hover {
      box-shadow: 5px 7px 67px -28px rgba(0, 0, 0, 0.37);
    }
  }
}
