body {
    font-family: 'Inter', sans-serif;
    color: #E2E8F0;
    background-color: #1A202C;
}

.hero-section {
    background-image: url("/images/healing.webp");
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.swatch {
    height: 100%;
    display: block;
    flex: 1;
}

.color-divider {
    width: 100%;
    display: block;
}

.px1 .swatch{
    height: 1px;
}

.px2 .swatch{
    height: 2px;
}

.px4 .swatch{
    height: 4px;
}

.px6 .swatch{
    height: 6px;
}

.swatches {
    display: flex;
    flex: 0 auto;
    justify-content: center;
    gap: 0;
    align-content: center;
    flex-wrap: nowrap;
}
