/* 1) */
body {
    background-color: #222;
    color: #ee6;
}

/* 2) */
h1{
    text-align: center;
}

/* 3) */
p{
     font-family: sans-serif;
}

/* 4) */
h1,h2,h3{
    color: #eee;
}

/* 5) */
strong{
     border-bottom: 3px solid white;
}

/* 6) */
.the-force{
    background-color: #444;
    font-weight: bold;
}

/* 7) */
.light-side{
    color: #66f;
}

.dark-side{
    color: #f33;
}

/* 8) */
#og-trilogy{
    list-style-type: circle;
}

/* 9) */
.movies-list:nth-last-of-type(2){
    padding-left: 200px;
}

/* 10) */
.movies-list:nth-last-of-type(3)li:last-child{
    margin-top: 200px;
}

/* 11) */
h1,h2,h3{
    text-transform: uppercase;
}

/* 12) */
p:first-of-type::first-line{
    color: #efe;
}

/* 13) */
h1:hover{
    color: #ee6;
}

/* 14) */
a:visited{
color: gray;
}

/* 15) */
a{
    font-style: italic;
}

/* 16) */
.movies-list li:nth-child(odd){
background-color: #111;
}

.movies-list li:nth-child(even){
background-color: #333;
}

