/* Color Palette
#D0CCD0 - light grey
#FBFCFF - egg white
#2A7B8C - turquoise
#605856 - matte brown
#274156 - matte navy
 */
/* Global styles
============================== */
/* apply a natural box layout model to all elements, but allowing components to change */
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
}
h1, h2{
  font-family: 'Caveat', cursive;
  font-weight: 400;
}
h1{
  font-size: 80px;
}
h2 {
  font-size: 40px;
  margin-top: 0;
}
h3 {
  margin:0;
}
a {
  color:#2A7B8C;
}
a:hover {
  text-decoration: none;
}
.content-wrap{
  max-width: 950px;
  margin: 0 auto;
  padding:60px 50px;
  overflow: auto;

}

.uppercase {
  text-transform: uppercase;
}

.btn {
    text-decoration: none;
    background:#2A7B8C;
    color:white;
    padding: 10px;
    display: inline-block;
}
/* Header and Footer
============================== */
header,footer{
  background: #274156;
  color:#D0CCD0;
}
/*header*/
header {
  position: relative;
  padding-top: 50px;
}
.profile-img {
  border-radius:50%;
  /* float: left;
  width: 300px;
  margin-right: 30px; */
}

.download {
  position: absolute;
  bottom: 0;
  right: 0;
}
header h1, header h2 {
  color:#FBFCFF;
  margin: 0;
}
/*footer*/
footer {
  text-align: center;
}
 footer h2 {
   margin-bottom: 10px;
 }
.contact-info a {
    padding: 10px;
    display: inline-block;
}
/* Navigation
============================== */
nav{
  text-align: center;
  background: white;
  position: fixed;
  top:0;
  width: 100%;
}
nav a {
  display: inline-block;
  padding: 15px 20px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
}
/* Work Experience
============================== */
.work{
  background:#D0CCD0;
}
h3 ~ p {
  margin:0;
}
.job-description{
  margin-bottom: 25px;
}
.job-description p:first-of-type {
  margin:0;

}
/* Education
============================== */
.education{
  /* background: #605856; */
  background: linear-gradient(rgba(96, 88, 86, 0.5),
               rgba(96, 88, 86, 0.5)),
               url(../images/resume.jpg) no-repeat fixed;
  background-size: cover;
}

p+h3 {
  margin-top: 30px;
}

/* Media Queires
============================== */

@media (min-width: 900px){
  .col-narrow{
    width: 30%;
    float: left;
    /* border: 1px solid black; */
    /* min-height: 350px; */
  }
  .col-wide{
    width: 70%;
    float: left;
    padding-left: 20px;
    /* border: 1px solid black; */
    /* min-height: 350px; */
  }
}
@media (max-width: 899px){
  header {
    text-align: center;
  }
  .profile-img {
    width: 200px;
  }
}
