Posted on

dfdfjrhug

/* Styles for <h1> elements */
h1 {
    font-family: 'Arial', sans-serif; /* Sets the font to Arial */
    font-size: 36px; /* Sets the font size */
    color: #333333; /* Sets the text color to a dark gray */
    text-align: center; /* Centers the text */
    margin-bottom: 20px; /* Adds space below the <h1> */
}

/* Styles for <h2> elements */
h2 {
    font-family: 'Georgia', serif; /* Sets the font to Georgia */
    font-size: 28px; /* Sets the font size */
    color: #555555; /* Sets the text color to a lighter gray */
    text-align: left; /* Aligns the text to the left */
    margin-bottom: 15px; /* Adds space below the <h2> */
}

/* Styles for <h3> elements */
h3 {
    font-family: 'Verdana', sans-serif; /* Sets the font to Verdana */
    font-size: 22px; /* Sets the font size */
    color: #777777; /* Sets the text color to an even lighter gray */
    text-align: left; /* Aligns the text to the left */
    margin-bottom: 10px; /* Adds space below the <h3> */
}