/**
 * styles.css - Cascading Style Sheets
 */
body {
    margin: 0;
    background-color: red;
}

main {
    background-color: white;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

hr {
    color: #eee;
}

main p {
    font-size: 1.2em;
    line-height: 1.2em;
}

main p.lead {
    font-size: 1.4em;
}

header img {
    max-width: 600px;
}

h1, h2 {
    font-family: arial;
}

h1 {
    border-left: solid 10px #c00;
    padding: 10px;
}

h1 > small {
    display: block;
    font-size: 0.6em;
    font-weight: normal;
}

#teasers {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#teasers a {
    background-color: red;
    width: 240px;
    margin-bottom: 20px;
    padding: 20px;
    text-decoration: none;
    color: white;
    text-align: center;
}

#teasers img {
    border: solid 10px white;
}

.kinopio-embed {
    border: solid 1px #eee;
}
    
aside {
    position: relative;
    left: 100px;
}

footer {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fcc;
    color: white;
}

footer p {
    text-align: center;
}

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

footer img {
    display: block;
    margin: 20px;
    border: solid 10px white;
    max-width: 80px;
}
