@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&family=Bangers&family=DynaPuff:wght@400;500&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    height: 100%;
	font-family: 'Bangers', cursive;;
	font-weight: 400;
	line-height: 1.75;
	color: #EC1635;
    background: linear-gradient(-45deg, #051937, #23a6d5, #26C578, #23d5ab);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
}


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

/* main */

h1, main {
    display: block;
    text-align: center;
}
h1{
    margin: 10px 0;
    padding: 10px 0;
    font-size: 50px;
}
p {
    margin: 10px 0 30px 30px;
    /* padding: 30px; */
    font-family: 'DynaPuff', sans-serif;
    font-size: 20px;
    text-align: left;
    color: #fff;
}
#obj {
    position: absolute;
    top: 75%;
}


/* footer */

.page-ftr{
    position: fixed;
    padding-bottom: 5px;
    bottom: 0;
	height: 4rem;
    width: 100vw;
	background: #344D67;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}
.page-ftr p{
    color: #6ECCAF;
	margin-bottom: 0;
}
.ftr-text a{
    text-decoration: none !important;
    color: #ADE792;
}
.ftr-logo{
	color: #ADE792;
}
.ftr-text {
    /* color: #7109e0; */
    text-align: center;
    display: block;
}

#canvas1
{
    border: 5px solid black;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    background:#4d79bc;
    max-width: 100%;
    max-height: 100%;
    font-family: 'Permanent Marker', cursive;
}

#layer1, #layer2, #layer3, #layer4, #player, #playerPP, #projectile, #projectileDD, 
#buggy, #nightmare, #blackWidow, #bonus, #boss, #minnion, #smoke, #fire, #bomb, 
#bg-audio {
    display: none;
}