/* assets/css/style.css */

/* Add any custom styles here */
body {
    padding-top: 3.5rem;
}

.jumbotron {
    background-size: cover;
    color: rgb(255, 255, 255);
    text-shadow: -1px 0 rgb(0, 0, 0), 0 1px rgb(0, 0, 0), 2px 0 rgb(0, 0, 0), 0 -1px rgb(0, 0, 0);
    width: 100%;
    margin-top: 0;
}

.navbar {
    margin-top: 0;
    /* Ensure there's no margin above the navbar */
}


.card {
    height: 100%;
    /* Ensures the card takes the height of the column (container) */
}

.card-body {
    height: 100%;
    /* Ensures the body takes the full height of the card */
    /* display: flex; */
    flex-direction: column;
    justify-content: space-between;
    /* Space elements evenly */
}

.card img {
    max-height: 400px;
    /* Set a maximum height for images */
    object-fit: cover;
    /* Ensures images cover the area without distortion */
}

.card-img-top {
    width: 100%;
    height: 300px;
    object-fit: cover;
}


.projects-row {
    display: flex;
    flex-wrap: wrap;
    /* Allows wrapping on smaller screens */
    justify-content: space-between;
    /* Adjust spacing between cards */
}

.project-card {
    flex: 1 1 30%;
    /* Default width of the card on larger screens */
    margin: 10px;
    /* Add margin around cards */
    max-width: 300px;
    /* Use max-width to control size */
}

.container {
    padding-left: 30px;
    /* Adjust as needed */
    padding-right: 30px;
    /* Adjust as needed */
}

.cardBox {
    /* Justify the text */
    text-align: justify;

    /* Align content to the top */
    vertical-align: top;
}