* {
	color: #ffffff;
}

body {
    background-color: transparent;
	background-color: rgba(255, 255, 255, 0);
    background-image: url('');
    padding: 0;
    margin: 0;
}

header {
	font-family: Pxl;
	font-size: 55px;
	width: 635px;
	height: 230px;
	z-index: 1;
	position: absolute;
	text-shadow: 2px 3px #6C90D8;
	animation: titleanimation 3s ease-in-out 0s infinite;
	bottom: 0px;
	text-align: center;
	text-overflow: clip;
	line-height: 72px;
}

@keyframes titleanimation {
    0%, 100% {
        text-shadow: 0px 9px 0 #621BC4, 0px 18px 0 #6C90D8;
		transform: rotate(4deg);
    }
    50% {
        text-shadow: 0px -9px 0 #6C90D8, 0px -18px 0 #621BC4;
		transform: translate(0px, -10px);
		transform: rotate(-4deg);
    }
}

.menu {
    text-transform: uppercase;
	font-family: Daydream;
    margin-left: 6px;
    z-index: 2;
    position: fixed;
	bottom: 0px;
}

.menu ul {
    margin:  0;
    padding:  0;
}

.menu li {
    display: inline-block;
	margin-top: 13px;
    margin-right: 4px;
    position: relative;
}

.menu a {
    text-decoration: none;
    width: 128px;
    height: 39px;
    line-height: 45px;
    text-align: center;
    display: inline-block;
    background-image: url('../img/button-inactive.png');
    letter-spacing: 1.8px;
	font-size: 13px;
	text-shadow: 0px 2px #6C90D8;
}

.menu a:hover {
    color: #070027;
	background-image: url('../img/button-active.png');
}

img {
    z-index: 3;
	position: fixed;
	right: -5px;
	bottom: 0px;
    pointer-events: none;
	height: 229px;
	width: 326px;
}

@media screen and (max-width: 779px) {
	img {
		opacity: 0;
	)
}