html {
    font-family: "Crimson Text", serif;
    font-size: 20px;
}
body {
    margin: 10%;
}

h1 {
    color: black;
    letter-spacing: -0.02em;
    text-transform: capitalize;
    text-indent: -1rem;
}

h2 {
    font-family: "Crimson Text", serif;
    font-weight: bold;
    color: gray;
  }

.normal {
    font-weight: normal;
    font-style: normal;
    letter-spacing: normal;
    text-decoration: none;
    text-transform: none;
  }
  
  .bold {
    font-weight: bold;
  }
  
  .italic {
    font-style: italic;
  }
  
  .wide {
    letter-spacing: 0.3em;
  }
  
  .tight {
    letter-spacing: -0.06em;
  }
  
  .underline {
    text-decoration: underline;
  }

  .line-through {
    text-decoration: line-through;
  }
  
  .overline {
    text-decoration: overline;
  }
  
  .uppercase {
    text-transform: uppercase;
  }
  
  .lowercase {
    text-transform: lowercase;
  }
  
  .capitalize {
    text-transform: capitalize;
  }