* {
  --jc-background: #fcfffe;
  --jc-text-0: #2bb673;
  --jc-text-1: #5b7467;
  --jc-text-2: #98aaa1;
}

a {
  color: var(--jc-text-0);
  text-decoration: none;
}

a:hover {
  color: var(--jc-highlight);
}

h1 {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 900;
  font-size: 5em;
  line-height: 1em;
  margin-top: 0em;
  margin-bottom: 0.5em;
  color: var(--jc-text-0);
}

.root {
  display: flex;
  flex-direction: row;
  max-width: 950px;
}

.main {
  padding-left: 1.5em;
  width: 70%;
}

/* Sidebar */

.sidebar {
  width: 30%;
}

.mediaContainer {
  margin-right: 1.5em;
  display: flex;
  flex-direction: row;
}

.mediaInfoContainer {
  width: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mediaImageContainer {
  text-align: right;
  width: 100px;
}

.mediaHeader {
  color: var(--jc-text-0);
  font-weight: 700;
}

.mediaTitle {
  margin-top: 0em;
  font-size: 0.9em;
  margin-bottom: 0.2em;
}

.mediaAuthor {
  font-size: 0.6em;
  margin-top: 0.4em;
  color: var(--jc-text-2);
  font-weight: 600;
  margin-bottom: 1em;
}

.mediaImage {
  display: inline-block;
  height: 4em;
  width: 4em;
  object-fit: contain;
}

/* Main */

.info {
  font-size: 1.2em;
}

.icons {
  text-align: center;
}

.fab {
  color: var(--jc-text-0);
  font-size: 2em;
  margin: 0 0.5em;
}

.fab:hover {
  color: var(--jc-highlight);
}

.details {
  font-size: 0.8em;
}

@media all and (min-width: 950px) {
	.resumeMobile {
		display: none;
	}
}

@media all and (max-width: 950px) {
  .root {
    flex-direction: column-reverse;
    justify-content: normal;
  }
  body {
    height: auto;
  }
  .main {
    padding: 1.8em 0.5em 0em;
    width: auto;
  }
  .info {
    margin-bottom: 1em;
  }
  h1 {
    font-size: 3.5em;
    text-align: center;
  }
  .fab {
    margin: 0 0.2em;
    font-size: 1.2em;
  }
  .sidebar {
    width: auto;
  }

	.resumeDesktop {
		display: none;
	}
}
