body {
  margin: 0;
  font-family: 'Arial';
  font-size: 16px;
  line-height: 30px;
}

a {
  /* color: #1C9C94; */
  color: #0377fc;
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
}

article {
  padding:0 25px;
}

section{
  margin: 1em;
  padding: 1em;
}

header, main, footer {
  margin: 0 auto;
}

header {
  padding: 2em;
  text-align: center;
  background-color: #4d4d4d;
  background-size: cover;
  background-position: fixed;
  color: white;
}

header section {
  margin: 0 auto;
  max-width: 1080px;
}

header img {
  border-radius: 50%;
  max-width: 190px;
}

h1 {
  text-transform: uppercase;
  margin: 1.5em 0;
}

h3 {
  text-transform: uppercase;
}

h3, h4 {
  font-weight: bold;
}

main {
  max-width: 1080px;
}

main section:not(:last-child) {
  border-bottom: 1px solid #ccc;
}

.fab {
  border: 1px solid white;
  border-radius: 60%;
  font-size: 1.5em;
  width: 1.5em;
  height: 1.5em;
  line-height: 1.5em;
  margin: 5px;
  text-align: center;
}

.fas {
  border: 1px solid white;
  border-radius: 60%;
  font-size: 1.5em;
  width: 1.5em;
  height: 1.5em;
  line-height: 1.5em;
  margin: 5px;
  text-align: center;
}

.fa {
  border: 1px solid white;
  border-radius: 60%;
  font-size: 1.5em;
  width: 1.5em;
  height: 1.5em;
  line-height: 1.5em;
  margin: 5px;
  text-align: center;
}

a .fab {
  color: #0377fc;
}

.course, .skills {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.skills .column {
  -ms-flex: 0 0 33%%;
  flex: 0 0 33%;
  max-width: 33%;
}

.skills .column ul, ul.job-description {
  list-style-type: none;
}

.skills .column ul > li:before {
  content: ">";
  padding-right: 0.5em;
  color: #787878;
}

.school, .job-title {
  text-transform: capitalize;
}

.school span, .job-title span {
  color: #787878;
  text-decoration: underline;
}

ul.job-description li:before{
  content: ">";
  padding-right: 0.5em;
  color: #787878;
}

footer {
 padding: 1em 1.5em;
 background-color: #4d4d4d;
 color: white;
 text-align: right;
}

@media only screen and (max-width: 768px) {
  .course {
    display: block;
  }

  .course .title, .course .descrition {
    max-width: 100%;
  }
}

@media only screen and (max-width: 576px) {
  .skills {
    display: block;
  }

  .skills .column {
    max-width: 100%;
  }

  footer {
    text-align: center;
  }
}