* {
	margin: 0;
	padding: 0;
	font-family: 'Montserrat', sans-serif;
	color: rgba(245, 245, 245, 1.0);
}

a {
	text-decoration: none;
}

section {
	background-color: rgba(15, 15, 23, 1.0);
	width: 100%;
	height: 100vh;
	position: relative;
}

ul#shape {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
}

ul#shape li {
	position: absolute;
	display: block;
	list-style: none;
	width: 100px;
	height: 100px;
	bottom: -200px;
	background-image: url('/theme/default/img/discord.png');
	background-size: cover;
	animation: floating 20s infinite linear;
}

ul#shape li:nth-child(1) {
	width: 75px;
	height: 75px;
	left: 25%;
	animation-delay: 0.1s;
}

ul#shape li:nth-child(2) {
	width: 60px;
	height: 60px;
	left: 95%;
	animation-delay: 10s;
}

ul#shape li:nth-child(3) {
	width: 80px;
	height: 80px;
	left: 75%;
	animation-delay: 18s;
}

ul#shape li:nth-child(4) {
	width: 100px;
	height: 100px;
	left: 10%;
	animation-delay: 5s;
}

ul#shape li:nth-child(5) {
	width: 100px;
	height: 100px;
	left: 60%;
	animation-delay: 8s;
}

ul#shape li:nth-child(6) {
	width: 100px;
	height: 100px;
	left: 84%;
	animation-delay: 1s;
}

ul#shape li:nth-child(7) {
	width: 80px;
	height: 80px;
	left: 50%;
	animation-delay: 15s;
}

ul#shape li:nth-child(8) {
	width: 60px;
	height: 60px;
	left: 40%;
	animation-delay: 6s;
}

@keyframes floating {
	from {
		transform: translateY(-130px) rotate(0deg);
		opacity: 0.7;
	}

	to {
		transform: translateY(-1000px) rotate(720deg);
		opacity: 0;
	}
}

.container {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.logo {
	width: 90px;
	height: 90px;
	margin: 0px 0px 30px 0px;
	user-select: none;
	border-radius: 100%;
}

.name {
	font-size: 25px;
	font-weight: bold;
	text-align: center;
	white-space: initial;
	padding: 3px 10px;
}

.description {
	font-size: 15px;
	text-align: center;
	margin: 0px 0px 20px 0px;
	padding: 8px 10px;
}

.poweredby {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0px 0px 0px;
	font-size: 13px;
}

.poweredby a {
    display: flex;
    align-items: center;
}

.poweredby .logo {
    width: 26px;
    height: 26px;
    margin: 0px 5px 0px 5px;
}

@media screen and (max-width: 800px) {
	.container {
		position: fixed;
		top: 0%;
		left: 0%;
		width: 100%;
		height: 100%;
		transform: translate(0%, 0%);
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	
	input {
		width: 80%;
	}
}