@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;600&display=swap');

* {
	margin: 0;
	padding: 0;
}

:root {
	font-family: "Poppins", sans-serif;
	font-weight: 300;
	font-style: normal;
}

body {
	padding: 40px;
	box-sizing: border-box;
	background: url("background.png");
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100vh;
	width: 100wh;
}

.top {
	flex-grow: 1;
}

h1 {
	font-size: 4em;
	text-align: center;
}

.wip {
	margin: 2em auto;
	width: 13em;
	display: block;
}

h2 {
	font-size: 2em;
	font-weight: 300;
	text-align: center;
}

h2:before {
	content: "";
	background: url("lib/img/warning.svg");
	display: inline-block;
	position: relative;
	height: 2em;
	width: 2em;
	background-size: 2em;
	left: -0.5em;
	top: 0.5em;
}

h2 b {
	font-weight: 600;
}

.bottom {
	display: flex;
	justify-content: space-between;
	align-items: end;
}

.technologies p {
	margin-bottom: 1.5em;
	font-size: 2em;
}

.made-by {
	font-size: 2em;

}

.made-by b {
	font-weight: 600;

}

.made-by a {
	text-decoration: none;
	color: initial;
}

.made-by:before {
	content: "";
	background: url("user.svg");
	display: inline-block;
	position: relative;
	height: 1.5em;
	width: 1.5em;
	background-size: 1.5em;
	left: -0.25em;
	top: 0.25em;
}

