:root {
    --bg-color: rgba(26, 26, 26, 0.8);
    --text-color: #e6e2d3;
    --accent-color: #ff8c00;
    --link-color: #ffb347;
    --font-family: 'Merriweather', serif;
    --sans-font: 'Open Sans', sans-serif;
    --max-width: 800px;
}


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

html {
    font-size: 100%;
    /* 16px */
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--sans-font);
    line-height: 1.6;
    padding: 2rem;
    display: flex;
    justify-content: center;
}


main#main {
    max-width: var(--max-width);
    width: 100%;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
    background-color: var(--bg-color);
    background-image: url('https://st.depositphotos.com/30010368/54360/v/600/depositphotos_543600850-stock-video-glowing-flying-ember-burning-ash.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-blend-mode: multiply;
}


h1#title {
    font-family: var(--font-family);
    font-size: 2.5rem;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 0 8px var(--accent-color);
}

h2 {
    font-family: var(--font-family);
    font-size: 1.75rem;
    color: var(--accent-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}


figure#img-div {
    margin: 2rem 0;
    text-align: center;
}

figure#img-div img#image {
    max-width: 100%;
    height: auto;
    border: 4px solid var(--accent-color);
    border-radius: 50px;
    box-shadow: 0 0 16px rgba(255, 140, 0, 0.5);
    display: block;
}

figcaption#img-caption {
    margin-top: 0.5rem;
    font-style: italic;
    color: var(--link-color);
}


section#tribute-info p {
    margin-bottom: 1rem;
}

section#timeline ul {
    list-style: none;
    padding-left: 1rem;
}

section#timeline li {
    position: relative;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
}

section#timeline li::before {
    content: '☀︎';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}


a#tribute-link {
    display: inline-block;
    margin-top: 2rem;
    color: var(--link-color);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

a#tribute-link:hover,
a#tribute-link:focus {
    color: #ff8c00;
    outline: none;
    text-decoration: none;
}


footer[role="contentinfo"] {
    margin-top: 2rem;
    padding: 1rem 1rem;
    background-color: bg--color-;
    border-top: 2px solid var(--accent-color);
    text-align: center;
    color: var(--text-color);
    font-family: var(--sans-font);
    font-size: 0.9rem;
    line-height: 0;
}