@import url(https://fonts.googleapis.com/css?family=Nunito:100,200,500,700,900);

html {
  margin: 0px;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.9);
  background: radial-gradient(circle at 50% 20%, #424242 10%, #555);
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: Nunito;
  margin: 0;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

h1 {
  border-bottom: solid #bbbbbb 3px;
}

ol {
  list-style: none;
  counter-reset: my-awesome-counter;
}
li {
  counter-increment: my-awesome-counter;
  margin: 0.2rem;
}
li::before {
  content: counter(my-awesome-counter);
  background: #54604c;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  display: inline-block;
  line-height: 1.25rem;
  font-family: Arial;
  font-size: 0.9rem;
  color: #efefef;
  text-align: center;
  margin-right: 0.25rem;
}
ol ol li::before {
  background: #667859;
}

li b {
  color: rgb(51, 74, 91);
  font-weight: 700;
  font-style: italic;
}

cite {
  font-size: smaller;
  color: #bcbcbc;
}

.letter {
  color: #353535;
  box-shadow: rgba(0, 0, 0, 0.42) 0px 2px 3px, inset rgba(0, 0, 0, 0.42) 0px -1px 2px;
  border-radius: 20px;
  background: #ebecd8;
  max-width: 750px;
  width: 90%;
  margin: 2rem auto;
  padding: 2rem;
  position: relative;
}

.contact {
  position: absolute;
  font-size: 1rem;
  right: 150px;
}

.contact .name {
  display: inline-block;
  position: absolute;
  top: 2px;
  left: 28px;
}

.contact .name a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}
