/* All style should go in this document. */
* {
  margin: 0px;
  padding: 0px;
}
body {
  font-family: 'Open Sans', sans-serif;
  background-color: #272342;
  font-size: 20px;
  color: #F8EFFF;
  text-shadow: 2px 2px #000;
  letter-spacing: 1px;
  background: url('../img/black-paper2.png');
  text-align: center;
}

h1 {
  font-size: 38px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 28px;
}
p {
  text-align: center;
}
div.main-wrapper {
  background-color: rgba(16, 0, 69, 0.75);
}
#header {
  padding: 8% 0 4%;
  width: 100%;
  margin: auto;
  background: linear-gradient(rgba(199, 82, 82, 0.3), rgba(0,0,0,0));
}

#content {
  padding: 2% 20% 2% 20%;
  margin: auto;
}
@media (max-width: 768px)
{
  #content {
    padding: 4%;
  }
}
#footer {
  margin-top: 4%;
  padding-top: 8%;
  padding-bottom: 8%;
  width: 100%;
  min-height: 100px;
  background-color: rgba(3, 9, 39, 0.64);
  color: #AAB;
}

#footer-content {
  display: block;
  text-align: center;
}

h2.section {
  text-align: center;
}

img.center {
  display: block;
  margin: 0 auto;
}

img.round {
  border-radius: 50%;
}
img.shadow{
  color: #000;
  box-shadow: 0px 0px 50px 10px;
  transition: box-shadow 1s linear;
}
img.shadow:hover {
  box-shadow: 0px 0px 80px 20px;
}
#profile-picture {
  border: 8px solid #fff;
  width: 200px;
}
.center {
  text-align: center;
}
div.skill-title {
  margin-top: 32px;
}
.project-title {
  margin-top: 32px;
}
img.project-img {
  cursor: pointer;
  width: 40%;
  margin: 8% auto;
  display: block;
  transition: width 1s cubic-bezier(0.59, -0.31, 0.31, 1.35), box-shadow 0.5s ease;
  box-shadow: 8px 8px 10px 4px rgba(0, 0, 0, 0.55);
}
img.project-img:hover {
  box-shadow: 16px 16px 16px 8px rgba(0, 0, 0, 0.55);
}

div.divider, div.sec-divider {
    background-image: url('../img/divider-triple.png');
    height: 45px;
    width: 160px;
    margin: 2% auto;
}

div.sec-divider {
  background-image: url('../img/divider-triple.png');
  width: 47px;
}
a, a:visited {
  color: #72B0FF;
  font-weight: 100;
  text-shadow: none;
  transition: color 0.25s cubic-bezier(0.4, 0, 1, 1), text-shadow 0.5s ease;
  text-decoration: none;
  text-shadow: 0px 0px 8px #000;

}
a:hover {
  color: #E91E63;
  text-shadow: 0px 0px 30px #000;

}
.interactive:hover {
  position: relative;
  top: -4px;
  transition: top 1s ease-in;
}
.interactive {
  transition: top 1s ease-in;
}
div#icon-bar {
  margin-top: 32px;
}
::selection {
  background-color: #E91E63;
  text-shadow: 0px 0px 8px #FFA0CE;
}
