/*
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*/

html {
  height: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100%;
  background: #eee;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: #222;
  font-size: 14px;
  line-height: 26px;
  padding-bottom: 50px;
  max-width: 100%;
  overflow-x: hidden;
}

.container {
  max-width: 800px;
  background: #fff;
  margin: 0px auto 0px;
  box-shadow: 1px 1px 2px #DAD7D7;
  border-radius: 3px;
  padding: 40px;
  margin-top: 50px;
}

.header {
  margin-bottom: 30px;
}
.header .full-name {
  font-size: 40px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.header .first-name {
  font-weight: 700;
}
.header .last-name {
  font-weight: 300;
}
.header .left,
.header .right {
  vertical-align: top;
  display: inline-block;
}
.header .left {
  width: 60%;
}
.header .right {
  text-align: right;
  width: 39%;
}
.header .contact-info {
  margin-bottom: 20px;
}
.header .email,
.header .phone {
  color: #999;
  font-weight: 300;
}
.separator {
  height: 10px;
  display: inline-block;
  border-left: 2px solid #999;
  margin: 0px 10px;
}
.header .position {
  font-weight: bold;
  display: inline-block;
  margin-right: 10px;
  text-decoration: underline;
  margin-bottom: 20px;
}

.details {
  line-height: 20px;
}
.details .section {
  margin-bottom: 40px;
}
.details .section:last-of-type {
  margin-bottom: 0px;
}
.details .section__title {
  letter-spacing: 2px;
  color: #54AFE4;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.details .section__list-item {
  margin-bottom: 40px;
}

.details .left,
.details .right {
  display: inline-block;
}

.details .left {
  vertical-align: middle;
  width: 10%;
}
.details .right {
  vertical-align: middle;
  padding-left: 20px;
  width: 80%;
}

/* Desktop Screen Media Query - Min Screen width: 600px*/

@media only screen and (min-width: 600px) {

  .details .right {
    padding-left: 30px;
  }
}

/* Mobile Screen Media Query - Max Screen width: 600px*/

@media only screen and (max-width: 600px) {

  .details .right {
    padding-left: 40px;
  }
}

@media only screen and (max-width: 450px) {

  .header .first-name {
    font-size: 2rem;
  }
  .header .last-name {
    font-size: 2rem;
  }

  .details .section__list-item {
    width: 29rem;
    font-size: .6rem;
  }

  #mini {
    width: 20rem;
    font-size: .7rem;
  }
}

.details .name {
  font-weight: bold;
}
.details a {
  color: #000;
}
.details a:hover {
  color: #54AFE4;
}
.contact-info a {
  color: #000;
}
.contact-info a:hover {
  color: #54AFE4;
}

.tagline {
  font-style: italic;
}


  /*

   RESPONSIVENESS
   Media Query for screen sizes equivalent and lower than 500px

   */

   @media only screen and (max-width: 500px) {


    .header {
      font-size: 12px;
      width: 90%;
    }

    img {
      width: 70px;
    }

    .right {
      max-width: 40%
    }

   }
