html{
   background-image: linear-gradient(to left, white 0%, #facd8a 100%);
}
body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 100%;
    width: 90%;
    background-color: white;
    margin: 15px auto;
    padding: 15px 1.5em;
    border: 1px solid black;
    border-radius: 25px;
    box-shadow: 5px 5px 0 0;
    background-image: url("../images/shsulogo.jpg");
    background-repeat:repeat-y;
    background-position:right;
    background-attachment:fixed;
}
a:focus, a:hover {
    font-style: italic;
    color:aqua;
    border: 3px blue;
    border-style: dotted solid;
}
h1 { 
    font-size: 175%;
    color: aqua;
    text-indent: 30px;
}
h2 {
    font-size: 130%;
    color: aqua;
    text-indent: 30px;
}
header {
    border-bottom: 2px solid maroon;
    margin-bottom: 1em;
    padding-bottom: 3em;
}
img {
    float: left;
    margin: 2em;
}
.shadow{
    text-shadow: 2px 2px 2px rgb(128, 0, 0);
}
article {
    clear: left;
    width: 70%;
    float: left;
    column-count: 2;
    column-rule: 2px dotted blue;
    column-gap: 2em;
    margin-left: 2em;
}
article h3 {
    column-span: all;
}
article img {
    float: left;
    margin-right: 1em;
    margin-bottom: 1em;
}
article p::first-letter {
    font-size: 3em;
    font-weight: bold;
    font-style: italic;
    color: lightgreen;
}
aside {
    width: 20%;
    float: right;
    background-color: tan;
    padding: 1em;
    border-top: 2px sienna;
}
footer{
    clear: both;
    border-top: 2px solid maroon;
}
footer p.copyright {
    text-align: center;
    font-size: 80%;
}
p.fixed {
    width: auto;
    position: fixed;
    bottom: 150px;
    right: 20px;
    background-color: lightgreen;
    border: 2px solid blue;
    padding: 6px;
    font-weight: bold;
}