#headerTitle {
     background-color: #FBFBF3 !important;
}

#headerTitle h1 img {
     height: auto;
     width: auto;
}

#navbar {
      padding-top: 0.5em;
      padding-bottom: 0.5em;
      border-top: 1px solid #000;
      border-bottom: 1px solid #000;  
}

/** div as Cards **/
.card-container {
    list-style:none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
}

.card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 42%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card h2 {
    margin-top: 0;
}

.card p {
    color: #555;
}


/** List as Cards **/
        .ul-card-container {
            list-style-type: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            max-width: 1200px;
            overflow-y: auto;
            height: 100vh;
        }
        .li-card {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 20px;
            width: 300px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .li-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }
        .li-card h2 {
            margin-top: 0;
        }
        .li-card p {
            color: #555;
        }
