/* styling for the contact page */
* {
    box-sizing: border-box;
}

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

nav {
    
}

main {
  margin-bottom: 6em;
}

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

form {
    background-color: #BAB2B5;
    padding: 1em;
    font-family: "Open Sans", sans-serif;
    
}

footer {
    width: 100%;
    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) {

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