body {
	background-color: white;
	background-image: linear-gradient(#990099, black);
	background-repeat: no-repeat;
	background-attachment: fixed;
	min-height: 98vh;

	color: white;
	font-family: inter;
	text-align: center;

	display: grid;
	grid-gap: 1em;
	grid-template-columns: 1fr;
	grid-template-areas: "main" "footer";
	grid-template-rows: 1fr;
	padding-bottom: 15px;
}

main {
	margin-top: 0;
	margin-left: auto;
	margin-right: auto;
	grid-area: main;
	width: 95%;
}
@media screen and (min-width:900px) {
	main {
		width: 30%
	}
}

footer {
  position: fixed;
  bottom: 0; /* Aligns to the bottom of the viewport */
  width: 100%; /* Ensures it spans the full width */
  background-image:    linear-gradient(to bottom, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.8) 80%, rgba(0,0,0,1.0) 100%);
}

a {
	color: pink;
	text-decoration: none;
}

a:hover {
	color: lightpurple;
	text-decoration: underline;
}

img.circle {
}

.info {
	display: block;

	border-radius: 0.5em;
	padding: 0.4em;
	margin: 1em;
	color: white;
}

.av {
	max-width: 27%;
	margin: 0.5em;

	margin-left: auto;
	margin-right: auto;
	display: block;
	border-radius: 50%;

}

.av-col {
	max-width: 54%;
	margin: 0.5em;

	margin-left: auto;
	margin-right: auto;
	display: block;
	border-radius: 50%;
}

.icon {
	position: relative;
	top: 0.17;
	width: 0.9em;
}

.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1em;
}
.nsfw {
	display: none;
}
input[type="button"],
input#allowNSFW {
	font-weight: bold;
	font-weight: 1000;
  	font-family: Inter;
  	background-color: black;
  	color: pink !important;
  	border-color: white;
  	border-radius: 5px;
  	padding: 20px;
	font-size: 18px;
}
