/* basic reset */
body, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, hr,
dl, dd, ol, ul, figure {
  padding: 0;
  margin: 0;
}

* {
  box-sizing: border-box;
}

/* About page */
#instafeed {
  display: flex;
  justify-content: center;
  align-items: center;
}

body {
  display: flex;
  flex-direction: column;
  background-image: url(../img/tree_bark.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 50em;
  width: 100%;
  height: 100%
}

/* about written at the top */
h1{
  margin: 0;
  font-family: 'Oxygen', sans-serif;
  color: darkgray;
  font-size: 5em;
  padding-top: .25em;
  display: block;
  margin-bottom: 1em;
}

/* my name at the top + the social media icons together in a div */
#paddingrow {
  display: flex;
  flex-direction: column;
  padding-left: 1em;

}


/* upper right hand navigation menu */

#localnavigation {
  display: flex;
  justify-content: flex-end;
  box-sizing: border-box;
  float: right;
  color: darkgray;
  padding-right: 1em;

}

#localnavigation li {
  border-color: darkgray;
  border-style: solid;
  border-width: 1px;
  font-size: 1em;
}


ul {
  text-decoration: none;
  list-style: none;
  display: flex;
}
nav li{
  list-style: none;
  text-decoration: none;
  margin: 5px;
  padding: 5px;
  color: white;
}


nav ul li:hover, nav ul li:visited, nav ul li:link {
  text-decoration: none;
  color: darkgray;
}

a {
  font-family: 'Source Sans Pro', sans-serif;
  color: darkgray;
  text-decoration: none;
}

.navigation {
  display: flex;
  flex-direction: row;
  color: white;
}

/*body text*/
p {
  display: block;
  font-family: 'Source Sans Pro', sans-serif;
  margin-bottom: 1em; /* Adds space below each paragraph */
}

/*contact page*/
#email {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 2em;
  font-size: 2em;
}
