/* CSS for the project shrew homepage */
html * {
    padding: 0;
    margin: 0;
}

html, body {
	height: 100%;
	width: 100%;
	overflow: scroll;

	display: flex;
	flex-direction: column;
	scroll-behavior: smooth;
}

body {
	background: fixed url("./microphone.jpg") bottom right black no-repeat;
	color: white;
}

#content {
	max-width: 800px;
	position: relative;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	padding: 2rem;
	max-width: 800px;
	margin: auto auto;
}

#content h1 {
	font-size: 4rem;
	text-align: center;
}

#content h6 {
	font-size: 0.8rem;
	margin: 1rem;
}

#content p {
	margin: 0.5rem;
	padding: 0.5rem;
	font-size: 1.4rem;
	background: #000000d0;
	border-radius: 10px;
}

#content a {
	color: cyan;
}
