html {
    /* border-box box model allows us to add padding and border to our elements without increasing their size */
    box-sizing: border-box;
    /* A system font stack so things load nice and quick! */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
      Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-weight: 900;
    font-size: 15px;
    /* color: var(--black); */
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.07);
    /* background-color: rgb(17 73 97); */
    color: white !important;
  }

  .heading{
    text-transform: uppercase
  }

  .div-head{
    justify-content: center;
    text-align: center;
  }