@charset "utf-8";

.body{
   animation: fadein 2s;
}
@keyframes fadein {
    from {opacity: 0;}
    to {opacity: 1;}
}
body::-webkit-scrollbar {
  width: 5px;
}
body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 5px;
}
body::-webkit-scrollbar-thumb {
  background-color: darkgrey;
	border-radius: 5px;
}
::selection {
  background: red
}

header {
	width: 100%;
	height: 80px;
	position: fixed;
	background: #191919;
	margin-left: auto;
	margin-right: auto;
/*	border-bottom: 1px solid #C62828; */
  z-index: 1;
}
.header-ic {
	width: 78%;
	height: 80px;
	background: #191919;
	margin-left: auto;
	margin-right: auto;
	line-height: 79px;
}
.header-ic img {
	height: 78px;
	width: 78px;
}
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
li {
    float: right;
}
li a {
	display: block;
	color: white;
	text-align: center;
	padding-top: auto;
	padding-right: 20pt;
	padding-left: 20px;
	padding-bottom: auto;
	text-decoration: none;
	font-family: roboto;
	font-size: 16px;
}
li a:hover {
  border-bottom: 1px solid #C62828;
}

body {
	background-color: #212121;
  margin-right: auto;
  margin-left: auto;
  margin-top: auto;
  margin-bottom: auto;

}
.body {
  width: 80%;
	margin: auto;
  height: auto;
}

.body img{
  width: 80%;
  height: auto;
  margin-right: 10%;
  margin-left: 10%;
  margin-top: 10%;
  margin-bottom: 10%;
}

footer{
	width: 100%;
	height: 40px;
	background: #191919;
  margin: auto;
	/*border-top: 1px solid #C62828;*/
	position: fixed;
  left: 0;
  bottom: 0;
}
.footer {
	width: 78%;
	margin: 0px auto;


	}
.copyright{
	float: left;
	font-size: 12px;
}
.social{
	float: right;
  margin-top: 7px;

}

.social a{
opacity: 100%;
transition: 0.3s;

}

.social a:hover{
opacity: 50%;
transition: 0.3s;
}


/*-------------------------------------------------------------------------------------------*/

/* Tablet :768px. */

/*-------------------------------------------------------------------------------------------*/




/*479px den düşük tüm çözünürlükler için ( telefon )*/
@media only screen and (max-width: 767px) {

header{
    height: 70px;
    z-index: 1

   }
header ul{
    display: none;
  	}

.header-ic{
    height: 70px;
   }

.header-ic img {
    width: 50px;
    height: 50px;
    top: 10px;
    left: 30px;
    position: fixed;
	}

h1{
    font-size: 30px;
	}

  ul2 a
  {
    text-decoration: none;
    font-family: roboto;
    float:right;

  }

  .body {
    width: 90%;
  	margin: auto;
    height: auto;
  }

  .body img{
    width: 90%;
    height: auto;
    margin-right: 5%;
    margin-left: 5%;
    margin-top: 20%;
    margin-bottom: 10%;
  }



  #menuToggle
  {
    position: fixed;
    display: block;
    top: 25px;
    right: 30px;
    z-index: 1;

    -webkit-user-select: none;
    user-select: none;
  }

  #menuToggle input
  {
    position: absolute;
    display: block;
    width: 40px;
    height: 32px;
    top: -7px;
    left: -5px;
    cursor: pointer;
    opacity: 0; /* hide this */
    z-index: 2; /* and place it over the hamburger */

    -webkit-touch-callout: none;
  }

  /*
   * Just a quick hamburger
   */
  #menuToggle span
  {
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;
    background: #ededed;
    border-radius: 3px;

    z-index: 1;

    transform-origin: 4px 0px;

    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                opacity 0.55s ease;
  }

  #menuToggle span:first-child
  {
    transform-origin: 0% 0%;
  }

  #menuToggle span:nth-last-child(2)
  {
    transform-origin: 0% 100%;
  }

  /*
   * Transform all the slices of hamburger
   * into a crossmark.
   */
  #menuToggle input:checked ~ span
  {
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
    background: #424242;
  }

  /*
   * But let's hide the middle one.
   */
  #menuToggle input:checked ~ span:nth-last-child(3)
  {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
  }

  /*
   * Ohyeah and the last one should go the other direction
   */
  #menuToggle input:checked ~ span:nth-last-child(2)
  {
    transform: rotate(-45deg) translate(0, -1px);
  }

  /*
   * Make this absolute positioned
   * at the top left of the screen
   */
   #menu
   {
     position: fixed;
     top: 0;
     right: 0;
     width: 100px;
     height: 100%;
     padding-left: 40px;
     padding-right: 30px;
     padding-top: 80px;
     background:hsla(0,0%,85%,0.78)!important;
     list-style-type: none;
     -webkit-font-smoothing: antialiased;
     /* to stop flickering of text in safari */

     transform-origin: 0% 0%;
     transform: translate(100%, 0);
     transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
   }


  #menu a li2
  {
  	margin-right: 20px;
  	margin-bottom: 20px;
  	font-size: 20px;
  	text-decoration: none;
  	color: #424242;
  	display: list-item;
      text-align: -webkit-match-parent;
  }

  #menuToggle input:checked ~ ul2
  {
    transform: none;
  }

}
