@import url('https://fonts.googleapis.com/css2?family=Finger+Paint&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Elms+Sans:ital,wght@0,100..900;1,100..900&display=swap');

html, body {
	margin: 0;
	padding: 0;
	background-color: #292220;
	font-family: "Elms Sans", sans-serif;
	font-size: 16px;
	color: #FFFFFF;
}

* {
	box-sizing: border-box;
}

.container {
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100%;
	
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-content: stretch;
	align-items: center;
}

.icon {
	height: 150px;
	width: 150px;
}

.icon img {
	height: 100%;
	width: 100%;
	filter: drop-shadow(2.5px 2.5px 5px rgba(0, 0, 0, 1));
}

.name {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: center;
	
	font-family: "Finger Paint", sans-serif;
	font-size: 5rem;
	font-weight: bold;
 	text-shadow: 2.5px 2.5px 5px rgba(0, 0, 0, 1);
}

.soon {
	font-size: 2rem;
}