* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	color-scheme: only dark;
	user-select: none;
	--hotpink: #a90c53;
}

h1 {font-size: 3em; font-family: 'Gloock', serif;}
p {font-size: 1.4em;  font-family: 'IM Fell DW Pica SC', serif;}
a {
	text-decoration: none;
	color: var(--hotpink);
}

h1, p {animation: static .3s infinite;}
@keyframes static {
    0% {transform: translate(0, 0); opacity: 1;}
    25% {transform: translate(.2px, -.2px); opacity: .9;}
    50% { transform: translate(-.3px, .3px); opacity: 1; }
    75% {transform: translate(.2px, .2px); opacity: .9;}
    100% { transform: translate(-.3px, -.3px); opacity: 1;}
}

body {
    overflow-x: hidden;
    display: flex;
	flex-direction: column;
    align-items: center;
    justify-content: center;
	gap: 2em;
	background-color: #060606;
	color: white;
	text-align: center;
	margin: 8em 9em 8em 9em;
}

.container {
	display: flex;
	gap: 1em;
	margin-top: 2em;
}
.container > * {padding-bottom: 30px;}

.column {
	display: flex;
	flex-direction: column;
	gap: 1em;
	flex: 1;
}

.source {
	background-color: var(--hotpink);
	color: black;
	padding: 12px 24px 12px 24px;
	border-radius: 24px;
	display: flex;
	align-items: center;
	gap: 1em;
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	transition: 1s;
	&:hover {
		box-shadow: 0 12px 48px #a90c53;
		background-color: #cc2f76;
		}
}

.source img {
	width: 32px;
	border-radius: 8px;
}

.img {
	width: 100%; height: auto;
	/*filter: grayscale(100%) contrast(1.1);
	transition: all .25s ease-in-out;
	&:hover {filter:grayscale(0); contrast(1);}*/
}

@media (max-width: 800px) {
	body {
		margin: 0;
		padding: 7em 2em 6em 2em;
	}
	
	.container {
		flex-direction: column;
	}
	.img {filter:grayscale(0); contrast(1);}
}