html {
    font-family: "Archivo Narrow", sans-serif;
    font-size: 18px;
    line-height: 1.4;

    background-image: url("pics/paper.avif");
    background-position: center;
    background-repeat: no-repeat;
}

h1, h2, h3, h4, p {
    margin-top: 0;
}

h1 {
    font-size: 80px;
    line-height: 1;
    margin-bottom: 16px;
    color: white;
}

h2 {
    font-size: 30px;
    line-height: 1;
    color: white;
}

h3{
    text-align: center;
    line-height: 1;
    font-size: 40px;
    margin-bottom: 38px;
}

h4 {
    font-size: 20px;
    margin-bottom: 6px;
}

p {
    margin-bottom: 16px;
}

header {
    padding-top: 40px;
}

div.column {
    width: 960px;
    margin: auto;
}

/* header > div,
section > div,
footer > div {
    width: 960px;
    margin: auto;
} */

section {
    padding: 48px 0 39px 0;
    /* padding: 50px 0 40px 0; */
}

.title {
    width: 900px;
    margin: 0 auto;
    padding: 60px 40px;

    border-radius: 12px;
    text-align: center;
    border-color: black;
    border-width: 2px;
    border-style: solid;
}

/* intro */
section.intro {
    padding: 48px 0 60px 0;
}

.intro-layout {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 40px;
    align-items: start;
}

.intro-text h3 {
    text-align: left;
    font-size: 30px;
    line-height: 1;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #6c9f97;
    letter-spacing: 1px;
}

.intro-text p {
    margin-bottom: 20px;
}

.movie-poster img {
    width: 100%;
    display: block;
    border-radius: 10px;
}

/*  6 nav boxes */

.photo-grid-list {
    list-style: none;
    padding: 0;
    margin: 0;

    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.photo-grid-list li {
    border: 2px solid black;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
}

.img-placeholder {
    width:100%;
    height: 75px;
    background-color: #ccc;
}

.big-box {
    height: 250px;
    background-color: #ccc;
    border: 2px solid black;
    border-radius: 20px;
}

.photo-grid-list p {
    margin: 0;
    padding: 16px 10px;

    font-size: 16px;
    letter-spacing: 1px;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 24px;
    margin-top: 8px;
}

.last-section{
    padding-left: 120px;
    padding-right: 121px;
    font-size: 25px;
    text-align: center;
    line-height: 1.45;
    line-height: 1.45;
    letter-spacing: .4px;
    margin-bottom: 62px;
}

section.final {
    margin-top: -2px;
}

footer {
    background-color: rgba(156, 153, 158, 0.3);
}

.copyright-text{
    padding-top: 40px;
    padding-bottom: 40px;
}

/* character page */
.characters {
    padding: 20px 0 80px 0;
}

.section-heading {
    font-size: 42px;
    margin-bottom: 16px;
    text-align: center;
    color: #5e9b90;
    letter-spacing: 2px;
}

.characters-intro {
    max-width: 700px;
    margin: 0 auto 40px auto;
    text-align: center;
    font-size: 20px;
}

.character-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.character-card {
    background-color: #d8d2b5;
    border-radius: 16px;
    padding: 14px;
}

.character-img {
    width: 100%;
    height: 220px;
    background-color: #bcbcbc;
    border-radius: 12px;
    margin-bottom: 14px;
}

.character-card h3 {
    margin-bottom: 6px;
    font-size: 28px;
    text-align: left;
    text-align: center;
}

.character-card h4 {
    margin-bottom: 12px;
    font-size: 18px;
    color: #5e9b90;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.character-card p {
    margin-bottom: 0;
    font-size: 18px;
}

/* story */
.page-title {
    font-size: 60px;
    margin-bottom: 40px;
    text-align: left;
}

.story-part {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    margin-bottom: 70px;
    align-items: start;
}

.story-image {
    width: 100%;
    height: 180px;
    background-color: #ccc;
    border-radius: 12px;
}

.story-text h2 {
    margin: 0 0 10px 0;
    font-size: 30px;
    color: #000;
}

.story-text p {
    margin: 0;
    font-size: 20px;
    line-height: 1.5;
}

.story-part:nth-child(even) {
    grid-template-columns: 1fr 280px;
}

.story-part:nth-child(even) .story-image {
    order: 2;
}