*{
	padding: 0;
	margin: 0;
	font-family: 'Orbitron' , monospace;
	}
body{
	background-color: #09080b;
	color: white;
	}

a {
  color: white;
  text-decoration: none;
}
/*Here is snap-scroll*/
.snap-scroll{
	overflow: scroll;
	height: 100vh;
	scroll-snap-type: mandatory;
	scroll-snap-points-y: repeat(100vh);
	scroll-snap-type: y mandatory;
}
.page{
	height: 100vh;
	scroll-snap-align: start;
	position: relative;
	}
.spacer{
	color:black;
	font-size: 4px;
	background: transparent;}

/* SPINNER REEEEEE*/
.spinner{
	height:10vh;
	width: 10vw;
	display:flex;
	align-items:center;
	justify-content:center;
	position:absolute;
	left: 5vw;
	top: 1vh;
	background-color:#transparent;
}
.spinner-container{
	display:flex;
	position:relative;
	width:10vw;
	align-items:center;
	justify-content:center;
}
.circle{
	position:absolute;
	border-radius:50%;	
	animation:spin 3s linear infinite;
	display:flex;
}
/*
.circle-red{
	border:20px solid rgba(252,33,33,.2);
	border-right:20px solid rgb(252,33,33);
	animation-delay:.5s;
	width:150px;
	height:150px;
}
*/
.circle-green{
	border:4px solid rgba(198,200,99,.2);
	border-right:4px solid rgb(198,200,99);
	animation-delay:1s;
	width:35px;
	height:35px;
}

.circle-blue{
	border:6px solid rgba(18,198,255,.2);
	border-right:6px solid rgb(18,198,255);
	width:50px;
	height:50px;
}

@keyframes spin{
	100%{
		transform:rotate3D(1,.5,.75,720deg)  rotateZ(720deg);
	}
}
/* SPINNER REEEEEE*/

.navbar{
	margin-top: 0vh;}

/* Hamburger */
.hamburger1 {
  margin-right; 50px;
  display: flex;
  justify-content: flex-end;
  height: 30px;
  margin: 10px;
  display: -ms-grid;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  justify-items: center;
  z-index: 120;
}

.hamburger1 div {
  background-color: white;
  position: relative;
  width: 40px;
  height: 5px;
  margin-top: 7px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#toggle1 {
  display: none;
}

#toggle1:checked + .hamburger1 .top {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-top: 22.5px;
}

#toggle1:checked + .hamburger1 .meat {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-top: -5px;
}

#toggle1:checked + .hamburger1 .bottom {
  -webkit-transform: scale(0);
          transform: scale(0);
}

#toggle1:checked ~ .menu1 {
  height: 340px;
}


/* Menu */
.menu1 {
  width: 100%;
  background-color: #09080b;
  margin: 0;
  display: -ms-grid;
  display: grid;
  grid-template-rows: 1fr repeat(4, 0.5fr);
  grid-row-gap: 25px;
  padding: 0;
  list-style: none;
  clear: both;
  width: auto;
  text-align: center;
  height: 0px;
  overflow: scroll;
  transition: height .4s ease;
  z-index: 120;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.menu1 a:first-child {
  margin-top: 40px;
}

.menu1 a:last-child {
  margin-bottom: 40px;
}

.link1 {
  width: 100%;
  margin: 0;
  padding: 10px 0;
  font: 700 20px 'Oswald', sans-serif;
}

.link1:hover {
  background-color: #09060b;
  color: rgb(61, 61, 61);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* here starts image stuff */
.slogan{
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: left;
	}

#s1{
	font-family: "Orbitron" !important;
	position: absolute;
	font-size: 2.2em;
	font-weight: 600;
	top: 25vh;
	left: 5vw;
	}
#s2{
	position: absolute;
	font-size: 2.6em;
	color: #fd2364;
	font-weight: 800;
	top: 35vh;
	left: 5vw;
	font-family: 'Orbitron' !important;	
	}
#s3{
	position: absolute;
	font-size: 1em;
	color: #fff;
	font-weight: 200;
	top: 75vh;
	right: 5vw;
	font-family: 'Orbitron' !important;
	}

	
/* card futestic */
h1{
  font-family: "Orbitron" !important;
  font-weight: normal;
  }

.char{
  font-family: "Orbitron" !important;
  color: #fff ;  /* this is color of main text transition */
  transition: color ease-out .3s;
  text-shadow: ease-out .3s;
  text-shadow: 0 0 4rem #fff;
  }
  
.char.fade-in{
  font-family: "Orbitron" !important;
  color: #0cf;   /* this is color of main text*/
  transition: color ease-out .3s;
  text-shadow: ease-out .3s;
  text-shadow: 0 0 1rem #0cf;
  }
 
/* 2nd page of search */
	
.text-search{
	position: relative;
	color: #fd2364;
	height: 100vh;}
#t1{
	position: absolute;
	z-index: 1;
	top: 2.5vh;
	}
#t2{
	position: absolute;
	font-weight: 800;
	color: #0cf;
	top: 4.5vh;
	z-index: 2;
	left: 2vw;
	padding: 2vh 7vw;}
#t3{
	position: absolute;
	font-weight: 800;
	color: #0cf;
	top: 19.5vh;
	z-index: 2;
	left: 2vw;
	padding: 2vh 7vw;}

/*Here is the form CSS*/
#t4{
	display: block;
	position: absolute;
	background-color: #09080b;
	z-index: 100;
	bottom: 9vh;
	left: 5vw;
	}
	
.neonText {
  color: #0cf;
  text-shadow:

      0 0 10px #00a3cc,
      0 0 20px #00a3cc;

	}
/*
.neonText {
  color: #0cf;
  text-shadow:
      0 0 7px #fff,
      0 0 10px #fff,
      0 0 21px #fff,
      0 0 42px #0cf,
      0 0 82px #0cf,
      0 0 92px #0cf,
      0 0 102px #0cf,
      0 0 151px #0cf; 
	}
  */
	
/* genel stiller */
* {
    margin: 0;
    padding: 0;
}
.form-one {
    background-color:transparent;
    text-align: center;
    margin:20px 0;
    font-weight: 700;
}
/* form stilleri */
form#formset {
    width: 360px;
    margin: 0 auto;
    text-align: left;
    color:#0cf;
}
form#formset fieldset {
    margin: 0 0 1em 0;
    padding: 1.5em 1.5em 0 1.5em;
    border: #0cf 1px solid;
}
form#formset fieldset legend {
    font-weight: bold;
    color: #0cf;
    padding:0 0.5em;
}
form#formset label {
    display: block;
    width: 290px;
    font-size: 14px;
    line-height: 14px;
    padding: 0px 0px 8px 0px;
}
form#formset fieldset input {
    display: block;
    margin-top: 3px;
    border:1px solid #0cf;
    border-left:5px solid #0cf;
    background-color:#0cf;
    color:#ffc;
}
form#formset label.adAlani, form#formset label.adresAlani,
form#formset label.sehirAlani,
form#formset label.epostaAlani {
    clear: left;
}
form#formset label.adAlani,
form#formset label.soyadAlani,
form#formset label.sehirAlani,
form#formset label.epostaAlani,
form#formset label.telAlani {
    float: left;
    margin: 0px 10px 0px 0px;
    width: 150px;
}
form#formset label.adAlani input,
form#formset label.soyadAlani input,
form#formset label.epostaAlani input,
form#formset label.sehirAlani input,
form#formset label.telAlani input {
    float: left;
    width: 150px;
    padding: 0px;
}
form#formset label.postakoduAlani {
    float: left;
    width: 80px;
}
form#formset label.postakoduAlani input {
    float: left;
    width: 80px;
}
form#formset label.adresAlani {
    float: left;
    width: 310px;
    margin: 0px 0px 0px 0px;
}
form#formset label.adresAlani input {
    float: left;
    width: 310px;
    padding: 0px;
}
form#formset fieldset input#radiobutton_1,
form#formset fieldset input#radiobutton_2,
form#formset fieldset input#radiobutton_3,
form#formset fieldset input#radiobutton_4 {
    clear: left;
    float: left;
    padding: 0px;
    border:0;
    margin: 0px 0px 0px 0px;
    background-color:#07a;
}
form#formset label.konuRadyoButon {
    clear: none;
    margin: 0px 0px 0px 25px;
    padding: 0px 0px 15px 0px;
}
form#formset fieldset input#checkbox_1,
form#formset fieldset input#checkbox_2,
form#formset fieldset input#checkbox_3 {
    clear: both;
    float: left;
    padding: 0px;
    margin: 0px;
    border:0;
    background-color:#07a;
}
form#formset label.onayAlaniIsaretKutusu {
    clear: none;
    margin: 0px 0px 0px 25px;
    padding: 0px 0px 15px 0px;
}
form#formset textarea {
    display: block;
    margin-top: 3px;
    border:1px solid #fff;
    border-left:5px solid #fff;
    background-color:#33d6ff;
    color:#ffc;
}
form#formset blockquote{
    margin-bottom:10px;
}
    form#formset fieldset em, form#formset blockquote em{
    color:#ff0;
}
.formbutton{
	color: black;
	font-weight: 600;
	background-color: #33d6ff;
	padding: 1vw 2vw;
	}
	
input[type= checkbox]{
	color: #ocf;}	
/*Here is the form CSS end*/




/*html, body
  font-family 'Roboto Mono', monospace
  background #212121
  height 100% */
.flicker{
  position: absolute;
  z-index: 100; 
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  }
.text_flicker{
  font-weight: 100;
  font-size: 28px;
  color: #FAFAFA;
  }
.dud{
  color: #757575;
}

/*Here starts the page thrid*/

#earth1{
	position: absolute;
	top: 3vh;
	left: 7vw;
	z-index: 3;
	}

#earth2{
	position: absolute;
	top: 4vh;
	z-index: 4;
	width: 90vw;
	left: 4vw;
	overflow: hidden;
	}

#earth3{
	position: absolute;
	top: 45vh;
	left: 10vw;
	font-size: 1em;
	font-weight: 800;
	color: #0cf;
	
	}
#earth4{
	position: absolute;
	color: black;
	top: 1vh;
	z-index: 10;

	width: 100vw;
	background-color: #09080b;
	}	
	
/* earth3 text*/
/* Google Fonts */
@import url(https://fonts.googleapis.com/css?family=Anonymous+Pro);

/* Global */

#earth3{
  color: #0cf;
  font-family: 'Anonymous Pro', monospace; 
  font-size: 110%; 
  max-width: 83vw;
  overflow: wrap;
  white-space: initial;
  word-wrap: break-word; 
}
.line-1{
 
    margin: 0 auto;
    border-right: 2px solid rgba(255,255,255,.75);
    text-align: center;
    white-space: nowrap;
    overflow: wrap; 
}

/* Animation */
.anim-typewriter{
  animation: typewriter 4s steps(44) 1s 1 normal both,
             blinkTextCursor 500ms steps(44) infinite normal;
}
@keyframes typewriter{
  from{width: 0;}
  to{width: 15em;}
}
@keyframes blinkTextCursor{
  from{border-right-color: rgba(255,255,255,.75);}
  to{border-right-color: transparent;}
}


/*kartik page*/

.id-card-wrapper {

  height: 100vh;
  width:100%;
  background-color: #09080b;
  display: flex;
  font-size: 1.2em;
}
.id-card {

  flex-basis: 100%;
  max-width: 30em;
  border: 1px solid rgb(97, 245, 245);
  margin: 23vh 5vw;
  color: #fff;
  padding: 1em;
  background-color: #0A2129;
  box-shadow: 0px 0px 3px 1px #12a0a0, inset 0px 0px 3px 1px #12a0a0;
}

.profile-row {
  display: flex;
}
.profile-row .dp {
  flex-basis: 33.3%;
  position: relative;
  margin: 24px;
  align-self: center;
}
.profile-row .desc {
  flex-basis: 66.6%;
}

.profile-row .dp img {
  max-width: 100%;
  border-radius: 50%;
  display: block;
  box-shadow: 0px 0px 4px 3px #12a0a0;
}
.profile-row .desc {
  padding: 1em;
}

.profile-row .dp .dp-arc-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 6px solid transparent;
  border-top-color: #0AE0DF;
  border-radius: 50%;
  top: 0px;
  left: 0px;

  animation-duration: 2s;
  animation-name: rotate-clock;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes rotate-clock {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.profile-row .dp .dp-arc-outer {
  position: absolute;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border: 6px solid transparent;
  border-bottom-color: #0AE0DF;
  border-radius: 50%;
  top: -10px;
  left: -10px;

  animation-duration: 2s;
  animation-name: rotate-anticlock;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes rotate-anticlock {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

.profile-row .desc {
  font-family: 'Orbitron', sans-serif;
  color: #ecfcfb;
  text-shadow: 0px 0px 4px #12a0a0;
  letter-spacing: 1px;
}
.profile-row .desc h1 {
  margin: 0px;
}
