/* Styling for About Me page. Reminder: Color Scheme #EDC7B7 #EEE2DC #BAB2B5 #123C69 #AC3B61 */

html,
body {
    height: 100%;
}

header {
    margin-bottom: 2em;
    font-family: "Raleway", sans-serif;
  }

main {
  margin-bottom: 6em;
}

.jumbotron {
  background-color:#EDC7B7;
  padding: 8em;
  margin-bottom: 2em;
}

h1 {
    font-family: "Raleway", sans-serif;
}

h4 {
    font-family: "Raleway", "Open Sans", sans-serif;
}

p {
    font-family: "Open Sans", sans-serif;
}

/* ARTICLES */
article {
  width: 100%;
  height: auto;
  padding: 2em;
  margin-top: 1em;
  text-align: center;
}

article a {
  color: black;
  text-decoration: none;
}

article a:hover {
  color: white;
  text-decoration: none;
}

.project2 {background-color: #BAB2B5;}
.project1 {background-color: #EEE2DC;}
.project3 {background-color: #EDC7B7;}
.project4 {background-color: #EEE2DC;}

footer {
    width: 100%;
    align-content: center;
    position: fixed;
    left: 0;
    bottom: 0;
    background-color: white;
}

/*FOOTER SOCİAL ICONS*/
  ul.social-network {
    list-style: none;
    display: inline;
    /* margin-left: 0 !important; */
    padding: 0;
  }
  
  ul.social-network li {
    display: inline;
    margin: 0 .1em;
  }
  
  /*social icons hover actions*/
  
  .social-network a.icoCodePen:hover {
    background-color: #3B5998;
  }
  
  .social-network a.icoLinkedin:hover {
    background-color: #007bb7;
  }

  .social-network a.icoMail:hover {
    background-color: #123C69;
  }
  
  .social-network a.icoGitHub:hover {
    background-color:  #007bb7;
  }

  .social-network a.icoGitHub:hover i,
  .social-network a.icoCodePen:hover i,
  .social-network a.icoLinkedin:hover i,
  .social-network a.icoMail:hover i   {
    color: #fff;
  }
  
  .social-network a.socialIcon:hover,
  .socialHoverClass {
    color: #44BCDD;
  }
  
  .social-circle li a {
    display: inline-block;
    position: relative;
    margin: 0 auto 0 auto;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    width: 30px;
    height: 30px;
    font-size: 15px;
  }
  
  .social-circle li i {
    margin: 0;
    line-height: 30px;
    text-align: center;
  }
  
  .social-circle li a:hover i,
  .triggeredHover {
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -ms--transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
  }
  
  .social-circle i {
    color: #595959;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -o-transition: all 0.8s;
    -ms-transition: all 0.8s;
    transition: all 0.8s;
  }
  
  .social-network a {
    background-color: #F9F9F9;
  }
  
  /* MEDIA QUERIES */
@media screen and (max-width: 770px) {

  main {
    margin-bottom: 4em;
  }
  
  .jumbotron {
    padding: 3em;
  }

  .wrapper {
    display: flex;
    flex-direction: column;
  }

  .wrapper div:first-child {
    order: 1;
  }

  section {
      margin-bottom: 1em;
  }

  footer {
    padding-left: 1em;
    padding-right: 1em;
  }
}