body {
    background-color: #eaf1fa;
}

/* Header */
.header {
    background-color: #fff;
    border-bottom: 1px solid #dee2e6; 
}

.brand span {
    font-weight: 700;
}

/* Album Section */
.album {
  background-color: #ffffff;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* Card Base + Shadow */
.card.box-shadow {
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

/* Hover Shadow */
.card.hover-shadow:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Card Body */
.card-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Card Image */
.card-img-top {
    height: 225px;
    width: 100%;
    object-fit: cover;
}

.hangman-img {
    object-fit: cover;    
    object-position: left;  
    height: 200px;         
}

/* Card Text */
.card-text {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1rem;
}

h5 {
    color: black;
}

/* Tech Bubbles */
.tech-bubbles {
    margin-top: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.bubble {
    background-color: #eaf1fa;
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
    border-radius: 15px;
    display: inline-block;
    transition: background-color 0.3s, color 0.3s;
}

.bubble:hover {
    background-color: #0056b3;
    color: #ffffff;
}

/* Jumbotron */
.jumbotron-heading {
    font-size: 2.5rem;
    font-weight: 700;
}

.jumbotron .lead {
    font-size: 1.1rem;
    color: #6c757d;
}

.github-icon i {
    color: #000; 
    transition: color 0.2s;
}

.github-icon i:hover {
    color: #555; 
}

/* Footer */
.footer {
    background-color: #212529; 
    color: white; 
    flex-shrink: 0;      
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid #dee2e6;  
}