@font-face {
	font-family: "source-code";
	src: url("../fonts/SourceCodePro-Regular.ttf");
}

*, html {
	margin: 0;
	padding: 0;
}

body {
	background-color: rgb(26, 25, 25);
	font-family: "source-code";
  color:rgb(224, 224, 224);
}

#header-wrapper {
  height: 116px;
  margin: auto;
  max-width: 1000px;
  width: 100vw;
}

#header-wrapper header {
  align-items: center;
  display: flex;
  height: 80px;
  justify-content: space-between;
  max-width: 960px;
  width: auto;
}

#header-title-section h1 {
  font-size: 2em;
}

#header-title-section p {
  font-size: 1em;
}

#header-wrapper header nav menu {
  align-items: center;
  display: flex;
  font-size: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

#header-wrapper header nav menu li {
  padding: 0 32px 0 24px;
}

#header-wrapper header nav menu li a {
  color: inherit;
  font-size: 1.2em;
  text-decoration: none;
}

#header-wrapper header nav menu li a::before,
::after {
  display:inline-block;
  opacity:0;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
  -moz-transition: -moz-transform 0.3s, opacity 0.2s;
  transition: transform 0.3s, opacity 0.2s;
  -webkit-transition: all 300ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 300ms cubic-bezier(0.86, 0, 0.07, 1);
}

#header-wrapper header nav menu li a::before {
  margin-right:8px;
  color:rgb(31, 125, 247);
  content: '[';
  -webkit-transform: translateX(3px);
  -moz-transform: translateX(3px);
  transform: translateX(3px);
}

#header-wrapper header nav menu li a::after {
  margin-left:8px;
  color:rgb(31, 125, 247);
  content:']';
  position:absolute;
  -webkit-transform: translateX(-3px);
  -moz-transform: translateX(-3px);
  transform: translateX(-3px);
}

#header-wrapper header nav menu li a:hover::before,
#header-wrapper header nav menu li a:hover::after,
#header-wrapper header nav menu li a:focus::before,
#header-wrapper header nav menu li a:focus::after {
  opacity:1;
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  transform: translateX(0px);
}

#home {
  height: 100vh;
  width: 100vw;
}

#home main {
  margin: auto;
  max-width: 1000px;
}

#main-content {
  display: grid;
  grid-template-columns: auto 62%;
  column-gap: 24px;
}

#michaelolson-headshot {
  height: 240px;
  width: 240px;
  display: block;
  margin: auto;
  border-radius: 50%;
}

#main-content-skills {
  margin-top: 16px;
}

#main-content-skills menu {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 340px;
}

#main-content-skills menu li {
  list-style: none;
}

#main-content-skills menu li img {
  display: block;
  margin: 24px auto 0 auto;
  height: 28px;
  width: 28px;
}

#main-content-contact-info,
#main-content-contact-info menu {
  margin-top: 24px;
}

#main-content-contact-info menu li {
  list-style: none;
  margin-top: 8px;
  padding-left: 16px;
}

#main-content-contact-info menu li a {
  color: inherit;
}

#michaelolson-resume {
  height: 78vh;
}

#about {
  height:auto;
  width:100vw;
}

#about section {
	height: auto;
  width: 100vw;
  max-width: 1000px;
  margin: auto;
}

#about-quote-section {
	align-items: center;
	display: flex;
	justify-content: center;
  min-height: calc(100vh - 116px);
}

#about-quote-section blockquote {
  margin-bottom: 58px;
}

#about-quote {
  font-size: 2em;
}

q::after {
  opacity: 1;
}

#about-quote-author {
  text-align: right;
  padding-right: 1em;
}

#about-me-section {
  font-size:1em;
  line-height: 1.4em;
  padding-bottom: 30vh;
}

#about-me-section h2 {
  margin-bottom: 8px;
}

#about-me-section p {
  margin-top: 16px;
  text-indent: 24px;
  width: 99%;
}

