*{
  margin:0;
  padding:0;
  border:0;
  font-size:inherit;
  font-weight: inherit; 
  font-family: inherit;
  text-decoration: inherit;
  line-height: inherit;
  color: inherit; 
  font-style: inherit;
}
html, body{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 30px;
    color: wheat;
    text-shadow: 1px 1px 0px #fff;
    background-image: url("images/background.jpg");
    background-attachment: fixed;
}
body{
    text-align: center;
}
h1{
    font-size: 36px;
    line-height: 50px;
    font-weight: bold;
}
h2{
    font-size:24px;
    line-height: 40px;
    font-weight: bold;  
}
a{
    color: 58b;
}
a:hover{
    color: #369;
}
section{
    border-top:2px dashed #eee;
    padding:50px 10;  
    max-width: 800px; 
    margin:0 auto;
}
section:target h1{
    animation:flash 1s;
}
@keyframes flash{
    from{
        text-shadow: 5px 5px 0px blue;
    }
    to{
        text-shadow: 0px 0px 0px blue;
    }
}
address{
    white-space: pre-line;
    margin-bottom: 20px;
}
.hero{
    height:100vh;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border:0;
    padding:0;
}
.hero img{
    width: 100%;
    height: 100%;
}
.headshot{
    width:300px;
    height:300px;
    border-radius: 50%;
    overflow:hidden;
    margin-left: auto;
    margin-right: auto;
    transition: transform 1s, box-shadow 1s;
}
.headshot:hover{
    transform:rotate(360deg);
    box-shadow: 0px 0px 100px 50px rgb(131, 107, 13);
}
.list li{
   display: inline; 
}
.blocklist > li{
    display: flex;
    justify-content: center;
    border-style: solid;
    border-width: 20px;
    border-color: gray;
}
.blocklist > li > div{
    flex-grow: 1;
    align-self: center;
}
.blocklist > li > img{
    width: 150px;
    height: 150px;
    margin: 0 10px;
}
.blocklist > li:nth-child(odd){
flex-direction: row;
text-align: left;
border-right: 20px solid #eee;
}
.blocklist > li:nth-child(even){
flex-direction: row-reverse;
text-align: right;
border-left: 20px solid #eee;
}
.prose{
    text-align: justify;
    max-width: 500px;
    margin: 0 auto;
}
.prose p{
    margin: 20px auto;
}
.nav{
    width: 100%;
    display: flex;
    position: fixed;
}
.nav li{
    list-style-type: none;
    flex-grow: 1;
}
.nav li a{
    display: block;
    line-height: 50px;
    background-color: lightgray;
    color: #666;
    text-shadow: 1px 1px 0px #fd6;
    transition: background-color 0.2s;
}
.nav li a:hover{
    background-color: #fa0;
}