
/* Global Style
-----------------------------*/
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
  color: #343434;
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  line-height: 1.3;
}
img {
  width: 300px;
}
a {
  color: orange;
}
a:hover {
  text-decoration: none;
}
h2 {
  margin: 0;
  font-family: 'Caveat', cursive;
  font-size: 30px;
  font-weight: 600;
}
h1 {
  margin: 0 0 20px 0;
  font-family: 'Caveat', cursive;
  font-size: 60px;
  line-height: 0.5;
}
h3 {
  line-height: 1.5;
  margin-bottom: 0;

}
h3 + p {
  font-style: italic;
}
h3 ~ p {
  margin: 0;
}
.content-wrap {
  max-width: 900px;
  width: 85%;
  margin: 0 auto;
  padding: 40px 0;
}
.divider > section {
  border-bottom: 1px dashed darkgray;
  padding: 25px 0;
}
.divider > section:last-of-type {
  border-bottom: none;
}
/* Profile
-----------------------------*/
header {
  background: #2F3061;
  color: white;
  text-align: center;
}


/* Projects
-----------------------------*/
.projects {
  background: #F7FFF7;
}
.projects a {
  color: white;
  background: darkblue;
  text-decoration: none;
  padding: 8px;
  border-radius: 4px;
  display: inline-block;
}
.projects a:hover {
  background: rgba(47,48,97,0.8);
}
.project-item {
  overflow: hidden;

}
.project-item img {
  float: left;
  margin-right: 20px;
}

/* Work Experience
-----------------------------*/
.work-experience {
  background: #A1C6D7;
}
.work-experience a {
  color: darkblue;
}
.work-experience a:hover {
  text-decoration: none;
}
.job-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
}

/* Education
-----------------------------*/
.education {
  background-image: url(../images/4.jpg);
  background-size: cover;
  background-position: top right;
}

/* Contact Info
-----------------------------*/
footer {
  background: #343434;
  color: white;
  text-align: center;
}
.contact-list {
  list-style-type: none;
  padding: 0;
  display: flex;
  justify-content: center;
}
.contact-list a {
  padding: 15px;
  display: inline-block;
}
