/* Add a box border around headings */
h1 {
    border: 2px solid #333333; /* Border thickness, style, and color */
    padding: 10px; /* Adds space between text and border */
    display: inline-block; /* Makes the box only as wide as the text */
}
/* Add dark gray text outline to all headings */
h1, h2, h3, h4, h5, h6 {
    -webkit-text-stroke: 1px #333333; /* 1px width, Dark Gray color */
    color: #FFFFFF; /* Optional: Sets the inside fill color to white */
}