html {
  scroll-behavior: smooth;
}

body {
  background-color: #ddddee;
  font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
  color:#221122;
  font-size: 100%;
}

a {
  color: blue;
  -webkit-transition: color 1s;
  -moz-transition: color 1s;
  -o-transition: color 1s;
  transition: color 1s;
  text-decoration: none;
}

a:hover {
  color: darkgreen;
  text-decoration: underline;
}

.topHeader {
  height: 120px;
  text-align: center;  
  background: linear-gradient(180deg, rgba(0,34,17,0.5) 0%, rgba(0,68,31,0.3) 46%, rgba(0,188,121,0.1) 100%);
  background-color: #035;
  border-bottom: 3px solid black;
}

.logoContainer {
  background: url(images/sv_header_background.png) no-repeat center;
  height: inherit;
}

.logo {
  display: inline-block;
  background-color: whitesmoke;
  background-image: url(i/vo_site_logo.jpg);
  letter-spacing: 5px;
  color: darkblue;
  width: 150px;
  height: 150px;
  transition: all .3s;
  margin-top: 30px;
  border: 1px solid darkblue;
  border-radius: 5px;
  box-shadow: 0px 3px 10px #333333;
}

.wrapper {
  display: grid;
  grid-template-columns: minmax(auto, auto) minmax(320px, 1048px) minmax(auto, auto);
  grid-gap: 1rem;
}

.leftGutter {
  margin-left: 0rem;
}

.rightGutter {
  margin-right: 2rem;
}

section > h1 {
  font-size: x-large;
  font-weight: bold;
  color: #031;
  font-variant: small-caps;
  letter-spacing: 2px;
  text-shadow: 1px 1px 1px #666;
}

.topSection {
  margin-top: 125px;
  margin-bottom: 2rem;
}

.contactSection {
  color: #687;
}

.smallVerticalSpacer {
  display: block;
  height: 3rem;
}

.postDate {
  display: block;
  font-size: small;
  color: gray;
  font-weight: bold;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.sciframe {
  background: linear-gradient(180deg, rgba(68,51,68,0.1) 0%, rgba(51,34,51,0.3) 46%, rgba(34,17,34,0.5) 100%);
  background-color: #802bbc;
  border-radius: 5px;
}

hr {
  border-top:1px dashed rgba(200, 200, 200, 0.5);
  width: 95%;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.experienceItem {
  display: grid;
  padding: 0.5rem;
}

.experienceItem > h2 {
  font-variant: small-caps;
  letter-spacing: 2px;
  font-weight: bold;
  color: darkblue;
  font-size: large;
  margin-top: 0px;
  margin-bottom: 0px;  
}

.experienceItem > h3 {
  font-variant: small-caps;
  letter-spacing: 1px;
  font-weight: bold;
  color: #333;
  font-size: small;
  margin-top: 0px;
  margin-bottom: 0px;
}

.experienceItem > p {
  color: black;
  font-family: Arial, Helvetica, sans-serif;
}

.experienceItem > ul {
  font-family: Arial, Helvetica, sans-serif;
  padding: 0;
  padding-left: 1.5rem;  
  margin: 0;
  margin-top: 1rem;
  list-style: square outside;
}

.experienceItem > ul > li {
  margin-left: 0;  
  padding-left: 0;
}

.experienceItem > ul > li:first-child {
  font-style: italic;
  list-style: none;
  margin-bottom: 0.75rem;
  margin-left:-1.5rem;
}

.itemList {
  display: grid;
  grid-template-rows: auto;
  /* grid-template-columns: repeat(auto-fit, 320px); */
  grid-gap: 2rem;
  grid-row-gap: 1rem;
  justify-content: left;
  width: 100%;
  padding: 0;
  margin: 0;
  margin-bottom: 2rem;
}

.itemList > .item {
  display: grid;
  /* grid-template-rows: 222px 320px; */
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 1px 1px 5px #333333;
  padding: 1rem;
  background-color: #035;
  width: 100%;
}

.itemList > .item > .content {
  display: grid;
  background-color: whitesmoke;
  padding: 0.5rem;
  border-radius: 3px;
}

.itemList > .item > .itemHeader {
  display: grid;
  background-color: whitesmoke;
  padding: 0.5rem;
  border-radius: 3px;
}

.itemList > .item > .content > h1 {
  font-weight: normal;
  font-variant: small-caps;
  font-size: large;
  color: #031;
  padding-bottom: 0.75rem;
  text-align: left;
  margin: 0rem 0rem 0.25rem 0rem;
  letter-spacing: 2px;
  text-shadow: 1px 1px 1px #666;
  border-bottom: 1px dashed #031;
}

a.linkedin {
  background: url(i/linkedin_logo_small.png) no-repeat left 0px;
  padding-left: 24px;
  vertical-align: middle;
}

footer {
  text-align: center;
  margin: 0 auto;  
  margin-top: 1rem;
  display: block;
  width: 50%;
}

footer > p {
  font-size: small;
}

.secondary {
  color: #333;
  font-weight: bold;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.followUs {
  text-align: left;
  padding-left: 1rem;
}

.email {  
  text-align: right;
  margin-top: auto;
  margin-bottom: 1rem;
}

.social {
  display: grid;
  grid-template-columns: 30px 30px;
  grid-gap: 0.5rem;
}