@import url("https://unpkg.com/@picocss/pico@latest/css/pico.min.css");

.demo {
  --metal: silver;
  --convexity: 2; /* between -5 and 5 */
  border-radius: 64px;
  box-shadow: #00000060 0px 4px 8px !important;
  font-family: sans-serif;
  font-size: 56px;
  font-weight: 600;
  height: 240px;
  line-height: 240px;
  margin: 0 auto;
  text-align: center;
  width: 480px;
}

.demo span {
  font-weight: normal;
  font-size: 92px;
  font-style: italic;
  vertical-align: top;
  margin-left: -2px;
  margin-top: -5px;
}

@media only screen and (max-width: 991px) {
  .demo {
    border-radius: 32px;
    font-size: 28px;
    height: 120px;
    line-height: 120px;
    width: 240px;
  }

  .demo span {
    font-size: 46px;
    margin-left: -1px;
  }
}