﻿body {
    background-color: black; /* Set the entire page background to black */
    color: #07c727; /* Green text for all content */
}

.card {
    background-color: #0d0d0d; /* Dark grey background for the cards */
    color: #07c727; /* Green text for the card content */
}

.btn-outline-secondary {
    color: #07c727; /* Green text for buttons */
    border-color: #07c727; /* Green border for buttons */
}

.btn-outline-secondary:hover {
    background-color: darkgreen; /* Darker green background on hover */
    color: black; /* Black text on hover for contrast */
}

.card-body {
    padding: 1.5rem; /* Add padding for better card appearance */
}

.card img {
    border-bottom: 2px solid green; /* Add a green border under the images for styling */
}
