:root {
	font-family: "DejaVu Sans Mono", monospace;
	--c_l: #F88;
	--c_m: #F00;
	--c_d: #800;
	--c_vd: #400;
	--c_vvd: #200;
}


body {
	background-color: var(--c_vd);
	text-align: center;
	color: #DDD;
	margin: 0px;
	display: flex;
	width: 100vw;
	height: 100vh;
	left: 0px;
	top: 0px;
}

#discord {
    position: absolute;
    width: 40px;
    height: 40px;
    display: block;
    background-image: url("discord.svg");
    filter: drop-shadow(0px 0px 4px var(--c_m));
    cursor: hand;
	left: 5px;
	top: 5px;
    background-repeat: no-repeat;
}

#discordacont {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1 1 auto;
}

#discordbcont {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
    padding: 20px;
    background-color: var(--c_vvd);
    border-radius: 20px;
    border: 2px solid #FF4444;
    box-shadow: 0px 0px 40px #F44, inset 0px 0px 20px #F44;
}

#mainpagecont {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: flex-start;
}

.bcontainerext {
	flex: 0 0 auto;
	margin-top: 20px;
	margin-bottom: 20px;
	background-color: var(--c_vvd);
	box-shadow: 0px 0px 30px #300;
}

.bcontainer {
	padding:20px;
	width: 400px;
	display: inline-block;
	box-shadow: 0px 0px 30px var(--c_m), inset 0px 0px 15px var(--c_m);
	border: 2px solid var(--c_m);
	background-color: #100;
	border-radius:40px;
}

.bcontainer:hover {
	font-weight: bold;
	animation: 1s linear 0s infinite normal dogia;
}

.bcontainer:active {
	font-weight: bold;
	text-shadow:0px 0px 10px var(--c_m);
}

.btext {
	color: var(--c_m);
}

.dgcont {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 40px;
	margin-bottom: 40px;
}

.dg {
	display: inline-block;
	height: 40vh;
	filter: drop-shadow(0px 0px 40px var(--c_m));
}

a {
	text-decoration: none;
}

@keyframes dogia {
	0% {
		box-shadow: 0px 0px 30px var(--c_m), inset 0px 0px 15px var(--c_m);
		border: 2px solid var(--c_m);
		background-color: #100;
	}
	10% {
		box-shadow: 0px 0px 40px var(--c_m), inset 0px 0px 20px var(--c_m);
		border: 2px solid var(--c_l);
		background-color: var(--c_vvd);
	}
	100% {
		box-shadow: 0px 0px 30px var(--c_m), inset 0px 0px 15px var(--c_m);
		border: 2px solid var(--c_m);
		background-color: #100;
	}
}

@keyframes discord_grow {
	0% {
		width: 40px;
		height: 40px;
		filter: drop-shadow(0px 0px 4px var(--c_m));
		left: 5px;
		top: 5px;
	}
	100% {
		width: 350px;
		height: 350px;
		filter: drop-shadow(0px 0px 20px var(--c_vvd));
		left: 20px;
		top: 20px;
	}
}
