/*author-Samantha Soosaar*/
/*heading 1 style for color, font-size and font-family*/
H1 {
    font-family:"Times New Roman", times, verdana, sans-serif;
    font-size: 2.5em;
    color: #ffffff;
    text-shadow: -2px 2px 3px #ff0000;
}
/*heading 2 style for color, font-size and font-family*/
H2{
     font-family: arial, verdana, sans-serif;
    font-size: 1.25em;
    color: #0000ff;
    text-align: center;
}
/*paragraph style for color, font-size and font-family*/
p{
     font-family: verdana, sans-serif;
    font-size: 1.125em;
    color: green;
    text-align:justify;
}
/*horizontalrule style for height, border, background and width*/
hr{
    height: 0.9375em;
    border: none; 
    background: violet; 
    width: 50%;
}
/*body style for background color and font-size for accessibility*/
body{
    background-color: lightpink;
    font-size:100%;
}
/*anchor styles for color and text decoration (order is important)*/
a:link{
    color:#9900ff;
    text-decoration: none;
}
a:visited{
    color:#770077
}
a:hover{
    color:red
}
a:active{
    color:#9900ff
}
#non-link{
    color:#9900ff;
}
.center{
    text-align:center;
}
.left{
    text-align: left;
}
mark{
    color: rgb(14,27,69)
}
.bold{
    font-weight:bold;
}
.red{
    color:red;
}
.coolbox{
    width:28.125em;
    padding:.625em;
    border:.3125em dotted red;
    margin:.625em;
    border-radius: 16px;
    box-shadow: 10px 10px 5px #aaaaaa;
}
