@charset "UTF-8";
/* CSS Document */
header {
    padding-right: 30px;
    padding-top: 10px;
    padding-left: 30px;
    padding-bottom: 30px;
    border-left: 20px solid #86FEFF;
    border-right: 20px solid #BBFF86;
    border-bottom: 20px solid #D2C9F9;
    border-top: 20px solid #FF8688; /* makes the text 20 px lower from the border */
} 
h1 {
    font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, serif; /* defines the font for the header */
    font-weight: bolder;
    text-align: center;	/* centers the text */
}
main {
    margin-top: 50px;
    margin-bottom: 10px;
    border-top: medium solid #FF8688;
    margin-right: 300px;
    margin-left: 300px;
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif; /* defines the font type */
}
p {
    width: 600px; /* makes the paragraphs only 600 px wide */
    color: #E94E50;
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
}
footer {
    margin-top: 50px;
    margin-bottom: 10px;
    border-top: medium solid #FF8688; /* gives an element a border with a pink solid color line */
    margin-left: 50px;
    margin-right: 50px;
}
footer p {
    font-weight: lighter; /* makes the font thinner */
    border-bottom-style: solid;
    border-bottom-color: #FF8688;
    padding-bottom: 20px;
    padding-top: 20px;
}
