:root {
  --blue-grey: #0f1015;
  --blue-grey-lighten-1: #191a1f;
  --blue-grey-lighten-2: #232429;
}

body {
  margin: 0em;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: white;
  background-color: var(--blue-grey);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: green;
  text-decoration: none;
}

a:hover {
  opacity: 0.6;
  text-decoration: underline;
}

.content-wrapper {
  margin: auto;
  min-height: 100vh;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: justify;
}

.home {
  text-align: left !important;
}

.subtitle {
  font-size: 1.25em;
}

.code {
  font-family: "Courier New", Courier, monospace;
}

.social-nav a {
  color: white;
}

@media only screen and (max-width: 1200px) {
  /* Tablet Desktop */
  .content-wrapper {
    width: 80%;
  }
}
