.header-title {
    font-size: 2rem;
    font-weight: bold;
    color: #060606;
    text-transform: uppercase; /* or lowercase, capitalize, none */
    letter-spacing: 2px;
    /* Add any other styles you want */
}

.header-title a {
    font-size: 2rem !important;
    font-weight: bold !important;
    color: #060606 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
}

/* Make specific figure smaller */
.content figure.small img {
    max-width: 400px;
    width: 100%;
}

/* Center home subtitle */
#typewriter-container {
    text-align: center !important;
}

#home-subtitle {
    text-align: center !important;
    padding: 0 !important;
}

/* Horizontal scrollable gallery */
.image-gallery {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    justify-content: flex-start !important;
    padding: 10px 0 !important;
    padding-bottom: 16px !important;
    max-width: 1200px !important;
    position: relative !important;
}

.image-gallery .gallery-item {
    flex-shrink: 0 !important;
    width: 200px !important;
    height: 200px !important;
}

/* Scrollbar styling - hidden by default, shows on hover */
.image-gallery::-webkit-scrollbar {
    height: 0;
}

.image-gallery:hover::-webkit-scrollbar {
    height: 6px;
}

.image-gallery::-webkit-scrollbar-track {
    background: #494f5c;
}

.image-gallery::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 3px;
}

.image-gallery::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.5);
}
