.mylet2 {
	float: left;
}
.mylet {
	font-size: 32px;
}
.main-container {
    float:left;
    position:relative;
    left:50%;
}

.fixer-container {
    float:left;
    position:relative;
    left:-50%;
}

.clear {
	clear: both;
}

h1 {
	font-size: 32px;
}

body {
	background: radial-gradient(ellipse at center -60px , #52affe 0%, #094271 100%) no-repeat fixed center top rgba(0, 0, 0, 0);
}


a:link    {color:#9dceff; background-color:transparent; text-decoration:none}
a:visited {color:#9dceff; background-color:transparent; text-decoration:none}
a:hover   {color:#ff0000; background-color:transparent; text-decoration:underline}
a:active  {color:#ff0000; background-color:transparent; text-decoration:underline}

/* Chrome, Safari, Opera */
@-webkit-keyframes bounce {
	0%, 10%, 20%, 50%, 80% {
	    transform: translateY(0px);
	}
	40%, 60% {
	    transform: translateY(-15px);
	}
}

@keyframes bounce {
	0%, 10%, 20%, 50%, 80% {
	    transform: translateY(0px);
	}
	40%, 60% {
	    transform: translateY(-15px);
	}
}

.jumper {
    /* Chrome, Safari, Opera */
    -webkit-animation-name: bounce;
    -webkit-animation-duration: 2s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-delay: 0s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    -webkit-animation-play-state: running;
    /* Standard syntax */
    animation-name: bounce;
    animation-duration: 2s;
    animation-timing-function: linear;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-play-state: running;
}