/* Base typography */
body {
    font-size: 1.5vw; /* Scales with viewport */
}
@media (min-width: 992px) {
    body {
        font-size: 1rem; /* Normalize on larger screens */
    }
}

h3 {
    font-size: 1.25em;
}

/* Blockquotes */
blockquote {
    border-left: 4px solid #ccc;
    margin: 1.5rem 0 1.5rem 3rem;
    padding: 0 2rem;
    color: #555;
    font-style: italic;
}

/* Hero Image */
.hero-image {
    background-image: linear-gradient(
            rgba(0, 0, 0, 0.0),
            rgba(0, 0, 0, 0.0)
    ),
    url("/files/2022.PassoverLentAlt.jpg");
    min-height: 60vh; /* Flexible height */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    border-bottom: 1px solid #000;
}

.hero-text {
    text-align: center;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.75);
    padding: 1rem;
}

/* Item cards */
.item {
    border: 1px solid #eee;
    padding: 2rem;
    margin: 2rem auto;
    border-radius: 0.5rem;
    background-color: #fff;
    box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,0.05);
}

/* Shop banner */
#shop_banner {
    background-color: #000;
    padding: 0.5rem 1rem;
    color: #fff;
    font-weight: bold;
    font-size: 1.25em;
    line-height: 1.5;
    text-align: center;
}

#shop_banner a {
    color: #fff;
    font-weight: bold;
    font-size: inherit;
    text-decoration: none;
}
#shop_banner a:hover {
    text-decoration: underline;
}
