
@import url('https://fonts.googleapis.com/css?family=IBM+Plex+Mono:300+400,700&display=swap');

/* For better accessibility */
*:focus:not(:hover) {
  background: #121212;
  color: #fafafa;
  padding: 0.5rem;
}

*:focus:visited {
  background: rgb(231, 96, 18);
  color: #fafafa;
  padding: 0.5rem;
}

body {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 16px;
  display: flex;
  background-image: linear-gradient(to top, #cfd9df 0%, #e2ebf0 100%);
  color: #121212;
}

.text-center {
  text-align: center;
}

h1 {
  font-size: 2rem;
  font-weight: 300;
}

h2 {
  font-size: 1.7rem;
  font-weight: 700;
}

h3 {
  font-size: 1.4rem;
  font-weight: 700;
}

.text-justified {
  text-align: justified;
}

.container {
  max-width: 80%;
  display: flex;
  flex-direction: column;
  margin: auto;
}

article {
  font-size: 1.2rem;
}

li,
a {
  list-style-type: none;
  font-size: 1.2rem;
  line-height: 2rem;
  color: rgb(43, 42, 39);
}

a:visited {
  color: rgb(231, 96, 18)
}

a:hover {
  background: rgb(231, 96, 18);
  color: white;
  padding: 0.2rem;
}

section {
  padding: 0.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.box {
  background-color: white;
  border-radius: 0.8rem;
  box-shadow: 10px 10px 10px -4px rgba(0, 0, 0, 0.20);
  padding: 1rem;
}

section>h3 {
  margin-top: 0;
}
        