html,
body {
	margin-top: 50px;
	padding: 0;
	box-sizing: border-box;
	background: #fff;
	color: #22313f;
	text-align: center;
	width: 100vw;
	font-family: 'Roboto';
	overflow-x: hidden;
	padding: 0 20px;
}

.title,
.subtitle {
	display: inline-block;
	width: 100%;
	font-family: 'Roboto';
	font-size: 3em;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 3px;
	text-align: center;
	user-select: none;
}

img {
	max-width: 90%;
}

.title {
	color: #364e65;
	text-transform: none;
	padding: 0;
	margin: 0;
}

.avatar {
	width: 300px;
	height: 300px;
	border-radius: 9999px;
	aspect-ratio: 1/1;
	background-image: url('/img/20200823_215032_resized.jpg');
	background-size: cover;
}

.avatarContainer {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4rem;

	img {
		height: 100px;
	}

	@media only screen and (max-width: 600px) {
		flex-direction: column;

		img {
			transform: rotate(90deg);
		}
	}
}

.avatarDesc {
	text-align: left;
}

.flexBoxContainer {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.flexBoxWrapper {
	display: flex;
	flex-wrap: wrap;
	resize: both;
	width: 90%;

	border: black 2px solid;
	overflow: auto;
	gap: 1rem;
	padding: 1rem;
	justify-content: center;
	align-items: center;
	div {
		border: 2px solid;
		padding: 20px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
}
/* TEXT-REFLECT CSS THAT I ABSOLUTELY STOLE FROM https://codepen.io/KryptoniteDove/pen/QwRpjX*/

.text-reflect,
.text-reflect:before,
.text-reflect span {
	display: block;
	margin: 0;
	padding: 0;
}

.text-reflect,
.text-reflect:before,
.text-reflect:after {
	position: relative;
}

.text-reflect {
	top: -60px;
}

.text-reflect:before {
	content: 'YOU COWARDS';
	top: 95px;
	transform: scale(1, -1);
	backface-visibility: visible;
	z-index: 1;
}

.text-reflect:after {
	content: '';
	display: block;
	top: -10px;
	left: 0;
	width: 100%;
	height: 60px;
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 1) 50%);
	z-index: 2;
}

@media only screen and (max-width: 600px) {
	.text-reflect:before {
		content: '';
		margin-top: 4rem;
		top: 0;
		transform: scale(0);
		backface-visibility: hidden;
		z-index: 1;
	}

	.text-reflect:after {
		display: none;
	}
}
