* {
	padding: 0;
	margin: 0;
}

body {
	font-family: arial, verdana, sans-serif;
	--dark: rgb(10, 10, 10);
	user-select: none;
	scroll-behavior: smooth;
}

a {
	color: inherit;
	text-decoration: inherit;
}

#black {
	background-color: var(--dark);
	color: white;
}

.dc {
	background-color: rgb(56, 102, 255);
}

.gh {
	background-color: rgb(71, 71, 71);
}

.yt {
	background-color: rgb(255, 49, 49);
}

.ig {
	background-color: rgb(213, 62, 145);
}

.yellow-in {
	background-color: rgb(175, 122, 52);
}

.green-lar {
	background-color: rgb(34, 173, 64);
}

.blue-par {
	background-color: rgb(48, 143, 167);
}

.blue-hec {
	background-color: rgb(27, 94, 105);
}

.pink-ap {
	background-color: rgb(112, 41, 160);
}

.white-pre {
	background-color: rgb(139, 142, 143);
}

.white-hit {
	background-color: rgb(172, 172, 172);
}

.black-mm {
	background-color: rgb(53, 53, 53);
}

.button {
	position: fixed;
	z-index: 999;
	display: flex;
	list-style: none;
	background-color: rgba(255, 255, 255, .2);
	color: white;
	align-self: flex-end;
	padding: 10px;
	font-weight: 500;
	border-radius: 50px;
	grid-area: 'listen';
	border: 1px white solid;
	justify-content: center;
	transition: color 0.5s, background-color 0.5s;
}

section {
	padding: 50px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

section h2 {
	margin-bottom: 20px;
	text-align: center;
}

section p {
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	font-size: 1em;
}

section span {
	border-radius: 5px;
	color: azure;
	padding: 5px;
}

header {
    width: 100%;
    height: 10vh;
    display: grid;
    align-items: center;
    grid-template-areas: '. back . title . .';
}

header h1 {
    grid-area: title;
}

header a {
    grid-area: back;
}

footer {
	padding: 50px;
	text-align: center;
}

footer p:first-child {
	color: cornflowerblue;
}

footer a {
	color: cornflowerblue;
}