/* PROJECT PAGE STYLES
-------------------------------------------------- */
main.px-3 h1.display-1 {
    color: #F5F5F5 !important; /* Light gray for the main title */
    margin-bottom: 2rem;
}

main.px-3 > div:nth-child(2) p { /* Targeting the intro paragraph */
    color: #E0E0E0 !important; /* Light gray for the intro text */
    line-height: 1.6; /* Improve readability */
    margin-bottom: 3rem;
}

main.px-3 .card {
    background-color: #424242;
    color: #E0E0E0;
    border: 1px solid #616161;
    margin-bottom: 2rem;
}

main.px-3 .card-header {
    background-color: #303030;
    color: #F5F5F5;
    border-bottom: 1px solid #616161;
    padding: 0.75rem 1.25rem;
}

main.px-3 .card-body {
    padding: 1.25rem;
}

main.px-3 .card-title {
    color: #F5F5F5;
    margin-bottom: 0.75rem;
}

main.px-3 .card-text {
    margin-bottom: 1rem;
}

main.px-3 .btn-primary {
    color: #FFFFFF;
    background-color: #2196F3;
    border-color: #2196F3;
    transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

main.px-3 .btn-primary:hover {
    background-color: #1976D2;
    border-color: #1976D2;
}
