 /* =========================
   BACKGROUND 
========================= */
body {
    background-color: #ccf211; /* page background */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
}

/* =========================
   HEADERS 
========================= */
h1 {
    font-size: 36px;
    color: #1d3557;
    margin-bottom: 10px;
}

h2 {
    font-size: 28px;
    color: #457b9d;
    margin-top: 25px;
}

h3 {
    font-size: 22px;
    color: #2a9d8f;
    margin-top: 15px;
}

/* =========================
   PARAGRAPHS 
========================= */
p {
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* =========================
   NAV LINKS 
========================= */
nav {
    background-color: #222;
    padding: 12px;
    margin-bottom: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    margin-right: 15px;
    font-size: 16px;
}

nav a:hover {
    color: #ffcc00;
}

/* =========================
   LISTS 
========================= */
ul, ol {
    background-color: white;
    padding: 15px;
    margin: 15px 0;
    border-radius: 10px;
}

li {
    margin-bottom: 6px;
    font-size: 16px;
}

/* =========================
   MOVIE LAYOUT 
========================= */
.movie {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: white;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.movie img {
    width: 180px;
    border-radius: 10px;
}

.movie-info h3 {
    margin: 0;
    color: #1d3557;
}

.movie-info p {
    margin-top: 5px;
}

/* =========================
   OPTIONAL LINK STYLING (outside nav)
========================= */
a:hover {
    text-decoration: underline;
}