/* background */
body {
    background-color: rgb(255, 255, 255);
    margin: 0%;
}

/* intro paragraph */
p {
    padding-right: 30%;
    padding-left: 30%;
}

/* Page */
* {
    text-align: center;
    font-family: "papyrus-std", sans-serif;
    inset-inline: 0;
}

/* Lists */
li , ul , ol {
    list-style-type: none;
    display: flex; 
    flex-direction: row;
    display: flex; 
    justify-content: center;
    display: flex; 
    flex-wrap: wrap;
}

/* footer */
footer p {
    color: tomato;
}

footer div {
    font-weight: bolder;
    font-size: larger;
}

footer {
    background-color: black;
    padding-bottom: 2%;
}

footer nav {
    display: flex; 
    justify-content: center;
}

/* Navigation */
a:link, a:visited {
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    background-color: tomato;
    padding-top: 10px;
    padding-left: 0.2cm;
    padding-right: 0.2cm;
    margin: 10px;
    text-decoration: none;
    background-size: auto;
}

/* Navigation */
a:hover {
    background-color: rgb(203, 98, 24);
}

/* Navigation */
nav ul a:link,nav ul a:visited {
    text-transform: uppercase;
    font-weight: bold;
}

/* Header */
header img, footer img {
    width: 30ch;
}

header nav {
    display: flex; 
    justify-content: center;
}

header ul {
    padding-left: 0;
}

header {
    background-color: black;
    height: 30ch;
    background-image: url(scary_face.jpg);
    background-position-x: center;
    background-position-y: 30in;
    padding-top: 5%;
}

/* Main */
main h1{
    padding-bottom: 10%;
}

main {
    padding-bottom: 150px;
    padding-top: 100px;
}

main .flying {
    display: flex;
    justify-content: center;
}

main .flying img {
    width: 40%;
}

/* Cast */
main section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    justify-items: center;
}

main img {
    width: 30%;
    padding-top: 10ch;
}

main section div {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 400px;
    text-align: center;
}

main img {
    width: 200px;       
    height: auto;
    padding-top: 0;
    margin-bottom: 15px;
    display: block;
}

