/* Typography CSS file */

/* Font families */
body {
    font-family: 'Arial', sans-serif; /* Default font family */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica', sans-serif; /* Headings font family */
}

/* Font sizes */
h1 {
    font-size: 36px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    font-size: 16px; /* Default paragraph font size */
}

/* Font weights */
.bold {
    font-weight: bold;
}

.normal {
    font-weight: normal;
}

/* Line heights */
p {
    line-height: 1.5; /* Default line height for paragraphs */
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2; /* Default line height for headings */
}

/* Text colors */
body {
    color: #333333; /* Default text color */
}

h1, h2, h3, h4, h5, h6 {
    color: #000000; /* Default heading color */
}

/* Text alignment */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}
