* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.7;
    color: #444
}

h1,
h2,
h3 {
    color: #111
}

.container {
    width: min(1100px, 90%);
    margin: auto
}

.container--narrow {
    width: min(700px, 90%);
}

.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, .55), rgba(0, 0, 0, .55)),
        url(images/hero.jpg) center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff
}

.year {
    letter-spacing: 6px
}

.hero h1 {
    font-size: clamp(3.5rem, 9vw, 6rem);
    text-transform: uppercase;
    line-height: .9;
    margin: 20px 0;
    color: #fff;
}

.tagline {
    font-size: 1.5rem;
    font-style: italic
}

.dates {
    display: inline-block;
    margin-top: 40px;
    padding: 18px 40px;
    border-top: 2px solid rgba(255, 255, 255, .4);
    border-bottom: 2px solid rgba(255, 255, 255, .4);
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px
}

.dates span {
    font-size: 1.2rem
}

section {
    padding: 90px 0
}

.alt {
    background: #f5f5f5
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 35px
}

.card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .08);
}

.card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.card-content {
    padding: 16px 24px 24px 24px;
}

.card h3 {
    margin: 0;
    color: #ff6b1a;
    font-size: 2rem;
}

.card-date {
    margin: 0;
    color: #ff6b1a;
    font-weight: bold;
    font-size: 1.5rem;
}

footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 60px 0
}

footer h2 {
    color: #fff
}

ul {
    margin-left: 20px;
    margin-top: 15px
}
