@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

*,
*:before,
*:after {
  box-sizing: inherit;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: black;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1;
  font-size: 100%;
}

/* TEXT */

hr {
  border: none;
  border-top: 1px solid red;
  margin: 1rem 0;
}

h1 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 3rem;
    color: white;
}

h2 {
    font-family: "Spectral", serif;
    font-weight: 200;
    font-size: 2rem;
    color: red;
}

h3 {
  color: white;
  font-size: 1rem;
    font-weight: 200;
}

h4 {
  font-family: "Spectral", serif;
  font-weight: 200;
  color: grey;
  font-size: 1.2rem;
}

p {
  color: white;
  font-size: 1.4rem;
  line-height: 1.4em;
}

a {
  color :red;
  text-decoration: none;
}

a:hover {
  color :black;
  text-decoration: none;
    cursor: alias;

}

  /* CORNERS */

.name {
    position: fixed;
    left: 0px;
    top: 0px;
    padding: 1rem;
    z-index: 10;
    font-size: 1rem;
}

.name a {
	color: white;
	text-decoration: none;
}

.name a:hover {
	color: red;
	text-decoration: none;
	cursor:pointer;
}
  
.info {
  position: fixed;
  left: 0;
  bottom: 0;
  padding: 1rem;
  z-index: 10;
  cursor:pointer;
  font-size: inherit;
  color: red
    font-size: 1rem;
}

.info:hover {
  color: black;
}

.year {
    position: fixed;
    right: 0px;
    bottom: 0px;
    padding: 1rem;
    color: grey;
    z-index: 10;
    text-decoration: none;
}

.language {
position: fixed;
bottom: 0;
left: 1rem;
z-index: 100;
color: white;
border-bottom: 0px;
}

/* SELECTION */

::selection {
  color: red;
  background: black;
}

/* SPLIT */

.half {
  width: 100vw;
  flex-basis: 50vh;
  flex-grow: 1;
  position: relative;
}

.half + .half {
  background: black;
}

.center {
  position: relative;
  top: 12%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  margin: 0;
  text-align: left;
}

.center h2 {
    font-family: "Spectral", serif;
    font-weight: 200;
    font-size: 1.4rem;
    color: red;
    text-decoration: overline white;
}

@media only screen and (min-width: 70em) {
  .flex-container {
    display: flex;
    align-items: stretch;
    height: 100vh;
  }
}

.flex-column {
  background-color: black;
  padding: 1rem;
  height: 100%;
}

@media only screen and (min-width: 40em) {

  .flex-column {
    flex-basis: 50%;
  }
}

.flex-column:first-child {
  background-image: url("img/Metin_Aktas_Generator.jpg");
  background-size: cover;
    background-position: center bottom;
  height: 100vh;
}

.flex-column:last-child {
  background-color: black;
  overflow: auto;
  height: initial;
  padding-bottom: 3rem;
}

/* SCROLL BAR */
::-webkit-scrollbar {
  width: 3px;
  background-color: black;
}

::-webkit-scrollbar-track {
  background: black; 
}
 
::-webkit-scrollbar-thumb {
  background: red; 
}

::-webkit-scrollbar-thumb:hover {
  background: black; 
}

/* LOADING */

body {
  -webkit-animation: fadein 3s; /* Safari, Chrome and Opera > 12.1 */
     -moz-animation: fadein 3s; /* Firefox < 16 */
      -ms-animation: fadein 3s; /* Internet Explorer */
       -o-animation: fadein 3s; /* Opera < 12.1 */
          animation: fadein 3s;
}

@keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}


