html {
	font-family: 'Carme';
}

p {
	color: white;
}

body {
	color: white;
	background: -webkit-linear-gradient(to right, #5c258d, #4389a2);
	background: linear-gradient(to right, #000000 0%, #434343 74%);
	background-image: linear-gradient(to right, #000000 0%, #434343 74%);
	padding: 0;
}

.center {
	text-align: center;
	color: aqua;
	margin: 10px;
}

#pfp {
	display: block;
	width: 75px;
	height: 75px;
	margin: 0 auto;
	border-radius: 50%;
}

body::-webkit-scrollbar {
	display: none;
}

.button {
	margin: 25px auto;
	border: 2px solid wheat;
	width: 400px;
	height: 50px;
	overflow: hidden;
	align-items: center;
	border-radius: 16px;
	padding: 15px 32px;
	vertical-align: middle;
	display: flex;
	box-shadow: 0px 5px 10px 0px rgba(255, 0, 162, 0.5)
}

.button p {
	font-size: 35px;
	margin: 0 auto;
	padding: 15px 32px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	vertical-align: middle;
}

.button img {
	width: 75px;
	height: 75px;
	vertical-align: middle;
}

a {
	transition: all 0.5s;
}

a:link, a:active, a:visited {
	color: black;
	text-decoration: none;
}

@media only screen and (max-width: 768px) {
	.button {
		width: 50%;
		height: 30px;
	}
}

@media only screen and (max-width: 768px) {
	.button img {
		width: 50px;
		height: 50px;
	}
}

@media only screen and (max-width: 768px) {
	.button p {
		font-size: 15px;
	}
}

@media only screen and (max-width: 768px) {
	.button:hover {
		width: 75%;
		height: 75%;
	}
}

@media only screen and (max-width: 768px) {
	.button:hover p {
		font-size: 23px;
	}
}

@media only screen and (max-width: 768px) {
	a {
		transition: all 0.5s;
	}
}


@media (prefers-color-scheme: dark) {
	body {
		background-color: #121212;
		color: white;
	}
}
