@import url("https://fonts.googleapis.com/css?family=Source+Code+Pro");
html, body, div, h1, h2, h3, p, a, img, ol, ul, li {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-decoration:none;
  list-style: none;
  background-color: #0e1111;
  border-style: none; }

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

body {
  font-family: 'Source Code Pro', monospace;
  font-weight: 400;
  font-size: 21px;
  line-height: 33px;
  letter-spacing: -0.2px;
  color: #FFF;
  -webkit-animation: fadein 2s;
          animation: fadein 2s; }

.split-screen {
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media (max-width: 600px) {
    .split-screen {
      height: auto;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; } }
  .split-screen .left-image {
    width: 50%;
    height: 100vh;
    background-image: url("img.jpg");
    background-position: center center;
    background-size: cover; }
    @media (max-width: 600px) {
      .split-screen .left-image {
        height: 80vh;
        width: 100%; } }
  .split-screen .right-text {
    width: 50%;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    overflow: auto; }
    @media (max-width: 600px) {
      .split-screen .right-text {
        width: 100%;
        height: auto; } }
    .split-screen .right-text .right-text-vertically-center {
      padding: 80px;
      max-width: 640px;
      margin-top: auto;
      margin-bottom: auto; }
      @media (max-width: 1200px) {
        .split-screen .right-text .right-text-vertically-center {
          padding: 60px; } }
      @media (max-width: 600px) {
        .split-screen .right-text .right-text-vertically-center {
          padding: 20px; } }


.right-text-top {
  font-weight: 600;
  font-size: 64px;
  line-height: 80px;
  letter-spacing: -2px; }
  .right-text-top h2 {
    font-weight: 400;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 40px;
    letter-spacing: 0.4px;
    color: #f92672; }
  .right-text-top h1 {
    color: #a6e22e; }

.right-text-middle {
  padding: 40px 0 40px 0; }
  .right-text-middle p {
    margin-bottom: 40px; }

.right-text-bottom .list {
  width: 48%;
  display: inline-block;
  margin-bottom: 40px; }
  .right-text-bottom .list h3 {
    font-weight: 400;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 22px;
    color: #fd971f;
    letter-spacing: 2px; }
  .right-text-bottom .list ul li {
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 12px; }
    .right-text-bottom .list ul li a {
      color: #66d9ef; }
      .right-text-bottom .list ul li a:hover {
        color: #ae81ff;
        transition-duration: 0.1s; }
