/* main body styles*/
html {
    box-sizing: border-box;
}
* {
    box-sizing: inherit;
}
body {
    font-family: Helvetica, sans-serif;
    font-size: 100%;
    font-weight: 400;
    background-image: linear-gradient(270deg, rgb(227, 197, 250), #381666 74%);
    margin: 0;
}
main {
    font-family: Helvetica, sans-serif;
    color: black;
    background-color: white;
    line-height: 1.5em;
    padding: 20px;
    border-style: solid;
    border-width: 4px;
    border-color: rgb(124, 19, 165);
    margin: 2em;
    min-height: 255px;
}
main h2 {
    color: #381666;
}
p.more {
    text-transform: uppercase;
    font-size: .7em;
}
footer {
    font-family: Helvetica, sans-serif;
    background-color: black;
    color: #e199f7;
    text-align: center;
    font-size: .7em;
    padding: 1em;
    border-style: solid;
    border-width: 4px 0 0;
    border-color: rgb(124, 19, 165);
    height: 180px;
}
.column {
    float: left;
    width: 33.33%;
    padding: 10px;
}
.row:after {
    content: "";
    display: table;
    clear: both;
}
  
  /* link styles */
a:link, a:visited { color: rgb(124, 19, 165); }
a:focus, a:hover, a:active { color: #c133f9; }
a {
    text-decoration: none;
}
img {
    float: left;
    margin: 20px;
}
  
  /* header styles */
header {
    color: white;
    background-size: cover; 
    text-align: center;
    height: 8em;
}
header p {
    font-style: italic;
    margin-top: -10px;
    color: #efbcff;
}
header h1 {
    margin-top: 1.5em;
    }
  
  /* nav styles */
nav {
    font-family: Helvetica, sans-serif;
    background-color: black;
    border-style: solid;
    border-width: 4px;
    border-color: rgb(124, 19, 165);
    margin: 2em;

    background-size: cover; 
    height: 18em;
}
nav ul li a:link, nav ul li a:visited {
    color: rgb(153, 28, 203);
}
nav ul li a:focus, nav ul li a:hover, nav ul li a:active {
    color: #e199f7;
}
nav ul li {
    font-size: .7em;
    text-transform: uppercase;
    letter-spacing: .2em;
    list-style-type: none;
}
nav div h2 {
    color: #efbcff;
    text-align: center;
}
ul {
    padding: 0;
    text-align: center;
}