*, html, body {
  font-family: 'Open Sans', sans-serif;
  width: 100%;
  max-width: 100%;
  color: #031727;
  box-sizing: border-box;
}

h1, h2 {
  color:  #004741;
}

header {
  text-align: center;
  max-width: 90%;
  margin: 3em auto;
}

header h1 {
  text-transform: uppercase;
  background-color: #0B877D;
  color: white;
  padding: .5em;
  border-radius: .5em;
}

main > p{
  font-size: .8em;
  color:  #0B877D;
}

section {
  padding-left: 1em;
}

nav{
  padding-left: 3em;
}

nav h2 {
  padding-left: 1em;
}

main {
  width: 90%;
  margin: 0 auto;
}

.picture-content {
  display: flex;
  max-width: 95%;
  margin: 2em auto;
}

.cover{
  box-shadow: 20px 20px 20px #d0cbce;
  transition:transform 0.25s ease;
}

.email{
  font-weight: bold;
  cursor: pointer;
}

.email img {
  visibility: hidden; /* visibility: visible; */
  max-width: 20%;
  min-width:220px;
  margin-bottom: -.2em;
}

.email:hover img{
  visibility: visible;
}

.cover:hover{
  -webkit-transform:scale(1.5); /* or some other value */
  transform:scale(1.02);
}

a {
  text-decoration: none;
}

.box {
  font-weight: bold;
  cursor: pointer;
  transition: all .2s ease-in-out;
}

.box:hover {
  background: #BEFFE7;
  color:  #004741;
  border-radius: 5px;
  padding: .09em .4em;
  box-shadow: 0px 0px 35px #BEFFE7;

}


footer {
  text-align: right;
  max-width: 95%;
}

/* CSS3 Media Queries */

@media (max-width: 945px) {
  header {
    font-size: 12px;
  }
  header p{
    font-size: .9em;
  }

  nav h2 {
    padding-top: 2em;
  }

  .picture-content {
    display: block;
  }
  .picture-content aside .cover {
    display: flex;
    max-width: 95%;
    margin: 0 auto;
  }
}
