/* add your CSS below */

main, header, footer {
    width: 700px;
    margin-left: auto;
    margin-right: auto;
    /* outline: 1px solid red; */
}

body {
    font-family: sans-serif;
    font-size: 18px;
    background-color: rgb(133, 26, 247);
}

h1 {
    text-align: center;
    margin-top: 30px;
    color: white;
    font-size: 50px;
    font-family: Garamond, serif;
    border-bottom: 5px dashed white;
    padding: 20px;
}

section {
    background-color: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 20px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.286);
    /* Look at tool for shadows? */
}

main a {
    background-color: orange;
    padding: 5px 15px;
    text-decoration: none;
    color: white;
    font-weight: bold;
}

main a:visited {
    background-color: rgb(255, 192, 75);
}

main a:hover {
    background-color: rgb(255, 72, 0);
}

footer {
    color: white;
    text-align: center;
}

footer a {
    color: #ffffff;
}

ul {
    list-style-type: square;
    width: 60%;
}

h2 {
    font-size: 2em;
    color: rgb(224, 102, 179);
    margin-top: 0;
    font-family: Garamond, serif;
}

li {
    margin-bottom: 20px;
    line-height: 1.5em;
}

.pencils {
    background-image: url('../images/pencils.jpg');
    background-size: cover;
}
