body {
  font-family: sans-serif;
  font-size: 18px;
  padding: 0;
  margin: 30px;
  text-align: left;
  background-color: rgb(25, 55, 255);
  color: lightyellow;
}
body * {
  padding: 0;
  margin: 0;
  font-size: inherit;
  font-weight: 450;
  color: lightyellow;
}
h1 {
  font-size: 32px;
  margin: 0 0 35px 0;
  color: lightyellow;
  position: relative;
  line-height: 120%;
}
h2 {
  font-size: 32px;
  font-style: italic;
  color: pink;
  margin: 50px 0 20px 0;
}
h3 {
  color: #e78412;
  font-size: 25px;
  font-weight: 800;
  margin: 20px 0 8px 0;
  color: rgb(255, 218, 147);
}
h4 {
  color: #273D44;
  margin: 0 0 5px 0;
  font-size: 18px;
  font-weight: 500;
}

h5 {
    color: #273D44;
    font-size: 16px;
}
p,
li {
  color: lightyellow;
  line-height: 100%;
}
input[type='radio'] {
  transform: scale(2); 
  margin: 10px;
}
p span { 
  font-weight: 500;
  font-size: 16px;
  margin: 6px 4px;
  margin-left: 2px;
  color: lightyellow;
  background-color: rgba(0, 0, 0, 0.05);
  font-style: italic;
}
input {
color: black;
}
ul,
ol {
  margin: 0 0 30px 0;
}
ul li,
ol li {
  margin-bottom: 6px;
}
ul li {
  list-style-type: none;
  position: relative;
}
ul li:before {
  content: ".";
  position: absolute;
  left: -15px;
  font-weight: 700;
  color: inherit;
  font-size: 25px;
  top: -6px;
}
strong {
  font-weight: 500;
  color: #273D44;
}
p {
  margin: 15px 0 2px 0;
}
a {
  color: rgb(255, 225, 0);
  transition: background 0.05s ease-out;
}
a:hover {
  background: #E4F7F0;
}
article {
  max-width: 750px;
  min-width: 500px;
  position: relative;
  padding: 20px 0 40px 295px;
  margin-right: 55px;
  z-index: 1;
}
.logo {
  position: relative;
  left: -12px;
  width: 175px;
  margin-bottom: 10px;
}
.logo a img {
  max-width: 100%;
}
.logo a:hover {
  background: none;
  opacity: .8;
}
.example {
  display: flex;
  margin: 35px 0 40px 0;
  background: #fdf0e2;
  color: #e78412;
  padding: 30px 35px;
}
.example .title {
  flex: 1;
  color: inherit;
}
.example .title h1 {
  width: 100%;
  padding: 0 0 2px 0;
  font-size: 20px;
  font-style: italic;
  position: relative;
  top: 3px;
  color: inherit;
}
.example .content {
  flex: 2;
  color: inherit;
  position: relative;
  padding-left: 22px;
}
.example .content:after {
  content: "";
  width: 2px;
  left: -2px;
  top: 4px;
  height: calc(100% - 8px);
  position: absolute;
  background: #fdf0e2;
}
.example .content p:last-child {
  margin: 0;
}
.example .content * {
  color: inherit;
}
.meta-information {
  display: flex;
  margin: 0 -20px 50px -20px;
}
.meta-information .summary,
.meta-information .details {
  margin: 0 20px;
}
.meta-information .details {
  flex: 1;
}
.meta-information .details time,
.meta-information .details .difficulty {
  color: #e78412;
  font-weight: 700;
  margin-bottom: 3px;
  display: block;
}
.meta-information .details .difficulty:before {
  content: "\f007";
  font-family: FontAwesome;
  margin-right: 6px;
}
time:before {
  content: "\f017";
  font-family: FontAwesome;
  margin-right: 6px;
  color: inherit;
}
.summary {
  flex: 2;
  font-size: 18px;
  line-height: 145%;
  padding: 0 0 0 28px;
  font-style: italic;
  position: relative;
}
.summary:after {
  content: "";
  width: 3px;
  height: calc(100% - 10px);
  left: 0;
  top: 5px;
  position: absolute;
  background: #fdf0e2;
}
.presentation-details {
  display: flex;
  margin: 0 -20px 35px -20px;
}
.presentation-details section {
  flex: 1;
  margin: 0 20px;
}
.presentation-details section :last-child {
  margin-bottom: 0;
}
/* Left-side Navigation */
nav {
  padding: 25px 0 25px 0;
  list-style-type: none;
  position: relative;
  z-index: 2;
}
nav a {
  display: block;
  position: relative;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  padding: 18px 34px;
  transition: background 0.05s ease-out;
}
nav a.selected,
nav a.selected:hover {
  background: #e78412;
  color: white;
  font-weight: 500;
}
nav a:hover {
  background: #ee9024;
  color: #ffffff;
}
nav a:after {
  content: "";
  background-color: #e78412;
  background-image: url(../images/nav-selected-indicator-mask.svg);
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 15px;
  position: absolute;
  top: 0;
  right: 0px;
  opacity: 1;
  width: 0px;
  transition: all 0.075s ease-out;
}
nav a.selected {
  color: #ffffff;
}
nav a.selected:after {
  width: 15px;
  right: -15px;
}
/*The steps to complete list*/
time {
  margin: 0 0 10px 0;
  display: block;
  color: rgba(0, 0, 0, 0.45);
  font-weight: 500;
}
time:before {
  content: "\f017";
  font-family: FontAwesome;
  margin-right: 6px;
  color: inherit;
}
.steps {
  margin: 30px 0 50px 0;
  padding: 0 0 0 60px;
}
.steps h1 {
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 6px 0;
  padding: 0;
  color: #e78412;
}
.steps > ol {
  padding: 0;
}
.steps > li {
  list-style-type: none;
  position: relative;
  padding: 0 0 10px 0;
  margin: 0 0 40px 0;
}
.steps > li:not(:last-child):after {
  content: "";
  position: absolute;
  bottom: -2px;
  height: 2px;
  background: #fdf0e2;
  width: 35%;
  left: calc(22% + 50px);
}
.steps > li:last-child {
  border: none;
  margin: 0;
}
.steps > li:last-child :last-child {
  margin: 0;
}
.steps > li:before {
  position: absolute;
  left: -60px;
  top: -10px;
  font-weight: 400;
  font-size: 22px;
  color: #e78412;
  border: solid 2px #fdf0e2;
  height: 43px;
  width: 43px;
  text-align: center;
  box-sizing: border-box;
  padding-top: 9px;
  border-radius: 0 50% 50% 50%;
}
.steps > li:nth-child(1):before {
  content: ' 1 ';
}
.steps > li:nth-child(2):before {
  content: ' 2 ';
}
.steps > li:nth-child(3):before {
  content: ' 3 ';
}
.steps > li:nth-child(4):before {
  content: ' 4 ';
}
.steps > li:nth-child(5):before {
  content: ' 5 ';
}
.steps > li:nth-child(6):before {
  content: ' 6 ';
}
.steps > li:nth-child(7):before {
  content: ' 7 ';
}
.steps > li:nth-child(8):before {
  content: ' 8 ';
}
.steps > li:nth-child(9):before {
  content: ' 9 ';
}
.steps > li:nth-child(10):before {
  content: ' 10 ';
}
.steps ul,
.steps ol {
  padding: 0;
}
.steps ul li,
.steps ol li {
  list-style-type: none;
}
.steps ul li:before,
.steps ol li:before {
  display: none;
}
.steps ul li h2,
.steps ol li h2 {
  font-size: 15px;
  color: #273D44;
  font-style: normal;
  font-weight: 500;
  margin: 0;
}
.glossary {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  margin: 0 0 40px 0;
}
.glossary .term {
  -webkit-column-break-inside: avoid;
  column-break-inside: avoid;
  display: table;
}
.glossary .term h3 {
  font-weight: 500;
  font-size: 16px;
  color: #273D44;
  margin: 0;
}
.glossary .term p {
  margin-bottom: 20px;
  margin-left: 15px;
}
.resources {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  padding-bottom: 30px;
}
.resources .resource {
  -webkit-column-break-inside: avoid;
  break-inside: avoid;
  padding-bottom: 25px;
}
.resources .resource h4 {
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 17px;
}
.resources .resource p {
  margin: 10px 0 0 0;
}
@media print {
  aside {
    display: none;
  }
  article {
    width: 100%;
    padding: 0;
    margin: 0;
    max-width: 100%;
  }
}
article > ul,
article ol {
  padding-left: 22px;
  margin-bottom: 40px;
}
article > ul li,
article ol li {
  margin-bottom: 8px;
  line-height: 150%;
}
aside .image {
  height: 150px;
  width: 170px;
  margin: 22px 0 0 30px;
  background-image: url(../images/web-lit-logo.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
ul {
  margin-top: 10px;
}
aside nav {
  padding-top: 20px;
}
h1 {
  margin-top: 20px;
  font-size: 38px;
}
h2 {
  position: relative;
  padding-top: 30px;
}
h2:before {
  content: "";
  position: absolute;
  height: 2px;
  top: -2px;
  width: 50%;
  background: #fbe4ca;
  left: 25%;
}
sup {
  position: relative;
  width: 17px;
  margin-left: 2px;
}
sup:before {
  content: "";
  position: absolute;
  width: 17px;
  height: 17px;
  left: 0px;
  top: 5px;
  border-radius: 50%;
  background: #E4F7F0;
}
sup:hover:before {
  background: #d0f1e5;
}
sup a {
  color: #089970;
  display: inline-block;
  font-size: .6em;
  width: 16px;
  text-decoration: none;
  padding: 0;
  text-align: center;
  position: relative;
}
sup a:hover {
  background: transparent;
}
.footnotes sup:before {
  display: none;
}
.example {
  display: block;
  font-weight: 300;
  padding: 17px 20px;
  margin-top: 10px;
}
.example * {
  color: inherit;
}
.footnotes {
  font-size: .8em;
  padding-top: 20px;
  margin: 60px 0 0 0;
  border-top: solid 2px #fdf0e2;
}
.footnotes .jump {
  text-decoration: none;
  opacity: .6;
}
.footnotes .jump:hover {
  opacity: .8;
  background: none;
}
.footnotes .jump:after {
  font-family: "FontAwesome";
  content: "\f01b";
}
aside {
  z-index: 2;
  width: 230px;
  position: fixed;
  top: 0;
}
aside:before {
  background: #F09C3C;
  content: "";
  position: fixed;
  top: 0;
  height: 100vh;
  width: 230px;
  z-index: 1;
}
aside .image {
  position: relative;
  z-index: 2;
}
aside .image img {
  width: calc(100% - 20px);
}

.persona {
  padding-left: 190px;
  position: relative;
}
.persona img {
  border-radius: 50%;
  height: 150px;
  width: 150px;
  position: absolute;
  left: 0;
  top: 5px; 
}
#gridcontainer1 {
  display: grid;
  grid-template-columns: auto auto;
  background-color: darkgrey;
  margin: auto;
  padding: auto;
}
.griditem1 {
  background-color: darkgrey;
  padding: auto;
  margin: auto;
}
.gridcontainer2 {
  display: grid;
  grid-template-columns: auto auto auto;
  background-color: darkgrey;
  margin: auto;
  padding: auto;
}
.griditem2 {
  background-color: darkgrey;
  padding: auto;
  margin: auto;
}
