/* TYPOGRAPHY GENERAL */
body {
    font-family: 'Poppins', 'Times New Roman', Times, serif, sans-serif;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    color: #4B0082;
    font-weight: bold;
}

h1 {
    font-size: 3em;
}

h2 {
    font-size: 2.5em;
}

h3 {
    font-size: 2em;
}

h4 {
    font-size: 1.75em;
}

h5 {
    font-size: 1.5em;
}

h6 {
    font-size: 1.25em;
}

p {
    margin-bottom: 20px;
    font-size: 1em;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
}

ul li {
    margin-bottom: 10px;
}

/* LINKS */
a {
    color: #4B0082;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #9370DB;
}

/* BUTTONS */
button {
    padding: 10px 20px;
    background-color: #4B0082;
    color: #fff;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #9370DB;
}

/* QUOTES */
blockquote {
    margin: 20px 0;
    padding: 10px 20px;
    background-color: #f9f9f9;
    border-left: 5px solid #4B0082;
    font-style: italic;
    color: #666;
}

blockquote p {
    margin: 0;
}

/* RESPONSIVE TYPOGRAPHY */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }

    h2 {
        font-size: 2em;
    }

    h3 {
        font-size: 1.75em;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.75em;
    }

    h3 {
        font-size: 1.5em;
    }
}
