/* Styles for index.html */

/* Basic Prose styling for the Welcome Page */
.prose h1 {
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffcc00;
    /* accent */
}

.prose h2 {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.prose h3 {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 500;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.prose p {
    color: #d1d5db;
    /* text-gray-300 */
    line-height: 1.625;
    margin-bottom: 1rem;
}

.prose ul {
    list-style-type: disc;
    list-style-position: inside;
    color: #d1d5db;
    margin-bottom: 1rem;
}

.prose a {
    color: #ffcc00;
    /* accent */
    text-decoration: none;
}

.prose a:hover {
    text-decoration: underline;
}