/* style1.css*/
/* Page layout */
body {
   font-family: Arial, sans-serif;
   margin: 10px;
   text-align:center
}
/* Header section*/
header {
    border-bottom: 1px solid black;
    padding-bottom: 10px;
    margin-bottom: 10px;
    width: 100%;
}
/* Navigation links */
nav {
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    padding: 8px 0;
    margin-bottom: 15px;
}
nav a {
    text-decoration:none;
    margin: 0 10px;
    color:black;
}
/*Main*/
main {
    text-align: center;
    width: 100%;
    margin: 0 auto;
    line-height: 1.5;
}
/*Footer*/
footer {
    text-align:center;
    border-top: 1px solid black;
    margin-top: 20px;
    padding-top: 10px;
    font-size: 0.9em;
    width: 100%;
    display: flex;
    flex-direction:column;
    align-items: center;
}
/*Divider after Please enjoy this beautiful walk-through*/
.divider-text {
    text-align:center;
    border-bottom: 1px solid black;
    padding-bottom: 10px;
    margin-bottom: 20px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
