/* resets */
body {
    background-color: #fff;
    color: #424242;
    font-family: 'Space Mono', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5rem;
}

h1,
h2,
h3 {
    font-weight: 400;
    padding: 0;
    margin: 0;
    font-size: 2rem;
    list-style: height 1.5em;
}

h1 {
    line-height: 3rem;
}

h2 {
    font-size: 95%;
    line-height: 1.8rem;
    
    white-space: nowrap;
}

h3 {
    font-size: 0.7rem;
}

p {
    padding: 0;
    margin: 0;
    font-size: 0.7rem;

}

li {
    font-size: 0.7rem;
}

/* resets end */

/* defines */
.koerper {
    margin-top: 150px;
    padding: 1%;
}

.koerper a,
.koerper a:hover {
    font-size: 0.6rem;
    color: #424242;
    text-decoration: none;
}

/** .schwarz {
    color: white;
    background-color: #2b2b2b;
    padding: 0 0 6px 6px;
} **/

.hidden-seo {
    position: absolute;
    overflow: hidden;
    visibility: hidden;
    top:1;
    left:1;
}

i {
    font-size: 1rem;
}

i:hover {
    color:rgb(223, 16, 68);
}

/* defines end */
.blinking-cursor {
    font-weight: 100;
    font-size: 25px;
    color: #fff;
    -webkit-animation: 1s blink step-end infinite;
    -moz-animation: 1s blink step-end infinite;
    -ms-animation: 1s blink step-end infinite;
    -o-animation: 1s blink step-end infinite;
    animation: 1s blink step-end infinite;
}


@keyframes "blink" {

    from,
    to {
        color: transparent;
    }   

    50% {
        color: white;
    }
}

@-moz-keyframes blink {

    from,
    to {
        color: transparent;
    }

    50% {
        color: white;
    }
}

@-webkit-keyframes "blink" {

    from,
    to {
        color: transparent;
    }

    50% {
        color: white;
    }
}

@-ms-keyframes "blink" {

    from,
    to {
        color: transparent;
    }

    50% {
        color: white;
    }
}

@-o-keyframes "blink" {

    from,
    to {
        color: transparent;
    }

    50% {
        color: white;
    }
}

.schwarz {
    background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
	background-size: 400% 400%;
	-webkit-animation: Gradient 15s ease infinite;
	-moz-animation: Gradient 15s ease infinite;
    animation: Gradient 15s ease infinite;
    padding: 0 0 2px 6px;
    color:white;
    border-radius: 3px;
}

@-webkit-keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@-moz-keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}


.shaky:hover {
    animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
    
  }
  
  @keyframes shake {
    10%, 90% {
      transform: translate3d( 0, -1px, 0);
    }
    
    20%, 80% {
      transform: translate3d( 0, 2px, 0);
    }
  
    30%, 50%, 70% {
      transform: translate3d(0, -2px, 0);
    }
  
    40%, 60% {
      transform: translate3d( 0, 2px, 0);
    }
  }

