/* Colors
Dark blue: #26547C / rgba(38, 84, 124, 1)
Bright blue: #17BEBB / rgba(23, 190, 187, 1)
Yellow: #FFF07C / rgba(255, 240, 124, 1)
Pink: #EF476F / rgba(239, 71, 111, 1)
Pale yellow: #FFFFFA / $color5: rgba(255, 255, 250, 1)
*/


html {
  background: #FFFFFA;
  box-sizing: border-box;
  color: rgba(38, 84, 124, 0.9);
  font-family: 'Merriweather', serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5em;
}

body {
  margin: 0;
  padding: 0;
}

*, *:before, *:after {
  box-sizing: inherit;
}

@media (min-width: 600px) {
  html {
    font-size: 21px;
  }
}

main {
  margin: 0 auto;
  max-width: 30rem;
  padding: 36px 24px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  margin: 0;
}

h1 {
  font-size: 1.3rem;
}

h2 {
  font-size: 1.2rem;
}

h3 {
  font-size: 1rem;
}

h4 {
  font-size: 1rem;
}

h5 {
  font-size: 0.8rem;
}

p {
  margin: 0 0 1.3rem;
}

a {
  color: #EF476F;
}

.banner {
  background: rgba(255, 240, 124, 0.3);
  padding: 1rem 0 1.5rem;
  text-align: center;
}

.banner-title {
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  line-height: 1.5em;
  margin-bottom: 1rem;
}

.banner-links {
  list-style: none;
  margin: 0 auto;
  max-width: 30rem;
  padding: 0;
}

.banner-link {
  display: inline-block;
  margin: 0.5rem;
}

.banner-link a {
  background: #EF476F;
  border-radius: 50%;
  color: #FFF;
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  padding: 10px;
  text-decoration: none;
}

.banner-link a img {
  display: block;
  height: auto;
  width: 24px;
}

.banner-link .banner-link-content {
  display: none;
}

.banner-link a:hover {
  background: #26547C;
  transform: scale(1.1);
  transition: all .2s ease-in-out;
}

.banner-link a:active {
  background: #EF476F;
  transform: scale(1);
  transition: all .2s ease-in-out;
}

@media (min-width: 600px) {
}

.job-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}

.job {
  margin: 2rem 0 3rem;
}

.job-header {
  margin-bottom: 0.5rem;
  text-align: center;
}

.job-year {
  background: #17BEBB;
  border-radius: 0.75rem;
  color: #FFF;
  font-size: 0.8rem;
  font-weight: 400;
  margin: 0 auto 0.5rem;
  width: 4rem;
}

@media (min-width: 600px) {
  .job-year {
    border-radius: 0.75rem;
    font-size: 0.6rem;
  }
}

.job-business,
.education-org {
  color: #17BEBB;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.job-title,
.education-course {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1.5em;
}

.job-description {
}

.education {
  background: rgba(255, 240, 124, 0.3);
  padding: 2rem 0;
  text-align: center;
}
