* {
    box-sizing: border-box;
}

header nav a:link,
header nav a:visited {
    color: #f3e032;
}


header nav a:hover {
    background: 000000;
    text-decoration: underline;
}



footer nav a:hover {
    text-decoration: underline;
}

footer nav a:link,
footer nav a:visited {
    color: #000000;
}

#intro a:hover {
    text-decoration: underline;
}

#intro a:link,
#intro a:visited {
    color: #f3e032;
    background-color: #000000;
    padding: 16px 28px;
}

a:link,
a:visited {
    text-decoration: none;
    color: #f3e032;
}

a:hover {
    text-decoration: underline;
}


header {
    background: #000000;
    padding: 14px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header img {
    height: 48px;
    width: auto;
    display: block;
}


header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}

header nav a {
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    padding: 8px 12px;
    border-radius: 6px;
}

#intro {
    background-color: transparent;
    height: 700px;
    background-image: url("../images/hero.jpg");
    background-size: cover;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#intro h1,
#intro p,
#intro h2 {
    color: #000000;
    width: 520px;
    font-weight: bolder;
    margin-left: auto;
    text-align: right;

}

#intro h1 {
    font-size: 350%;
    margin-bottom: 0%;
}

#intro h2 {
    font-size: 130%;
}

#intro p {
    font-size: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    margin-top: 20px;
}

#intro a {
    display: inline-block;
    padding: 16px 28px;
    min-width: 220px;
    text-align: center;
    color: #f3e032;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
}

#lego-batman-movie img {
    display: block;
    border-radius: 12px;
}

#columns {
    display: grid;
    grid-template-columns: 1fr 4fr 5fr;
    column-gap: 35px;
}


#columns h2 {
    font-size: 200%;
    color: #f3e032;
    margin-bottom: 20px;
}

#columns section {
    border: 1px;
    padding: 24px;
    margin: 0;
    width: auto;
}


#character-spotlight {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    justify-content: center;
}

#character-spotlight article {
    padding: 16px;
    padding-left: 0;
    text-align: center;
}

#character-spotlight img {
    width: 125%;
    height: 50%;
    margin-bottom: 30px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

#character-spotlight p {
    font-size: 80%;

}

#character-spotlight h3 {
    font-size: 115%;
}



#lego-batman-games ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

body {
    background-color: #000000;
    color: #ffffff;
    margin: 0;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

#cast {
    padding-left: 35px;
}

#cast h1 {
    color: #f3e032;
}

#batman h2,
#robin h2,
#joker h2,
#batgirl h2,
#alfred h2,
#gordon h2 {
    color: #f3e032;
}

#batman h3,
#robin h3,
#joker h3,
#batgirl h3,
#alfred h3,
#gordon h3 {
    color: #f3e032;
}

strong {
    color: #f3e032;
}

#batman,
#robin,
#joker,
#batgirl,
#alfred,
#gordon {
    max-width: 1200px;
    margin: 32px;
    padding: 24px;
    background: #0b0b0f;
    border: 1px;
    border-radius: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
}

#batman img,
#robin img,
#joker img,
#batgirl img,
#alfred img,
#gordon img {
    width: 280px;
    height: auto;
    border-radius: 12px;
}


footer {
    background: #f3e032;
    padding: 20px;
    margin-top: 20px;
    color: #000000;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

footer img {
    height: 48px;
    width: auto;
    display: block;
    padding-left: 25px;
}

footer nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

footer nav a {
    text-decoration: none;
    font-weight: 600;
}

footer nav a:link,
footer nav a:visited {
    color: #000000;
}

footer nav a:hover {
    text-decoration: underline;
}