* {
	font-family: 'Satoshi-Variable', sans-serif;
	margin: 0;
	padding: 0;
	font-weight: bold;
}
html, body {
/*	background-image: url('assets/art.png');*/
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center; 
	background-size: cover;
/*	background-color: black;*/
	margin: 40px;
	padding: 0;
/*	height: 100%;*/
	color: white;
}

html {
	background-image: url('assets/art.png');
	background-color: black;
}

p {
	line-height: 1.8em;
	font-size: 1.2em;
	letter-spacing: 0.025em;
	filter: drop-shadow(0.35rem 0.35rem 0.2rem black);
}

p span {
	padding: 2px 8px;
	background-color: white;
	color: black;
	border-radius: 1em;
/*	border-bottom: 0.15em dotted white;*/
}

.logo {
	display: flex;
	width: 200%;
}

.logo {
	gap: 20px;
}

.logo img {
	height: 30px;
	filter: drop-shadow(0.35rem 0.35rem 0.2rem black);
}

#vaner {
	display: flex;
	width: 200%;
}

#vaner {
	gap: 20px;
}

#vaner img {
	height: 30px;
}

#back {
	position:absolute;
	top:10px;
	right:20px;
}

#back p {
	font-size: 3.2em;
}



#content {
/*	left: 0;*/
/*	position: absolute;*/
	width: 300px;
/*	padding: 50px;*/
/*	box-shadow: 5px 10px;*/
/*background-color: black;*/

}

#content p {
	
}

.article {
	display: flex;
	width: 400px;
	justify-content: space-between;
}

.button-row {
	display: flex;
	flex-direction: row;
	gap: 6px;
}

.button {
	display: flex;
	justify-content: center;
	flex-direction: column;
	appearance: none;
	background-color: black;
	border: 2px solid white;
	border-radius: 20px;
	height: 32px;
	width: 170px;
	box-sizing: border-box;
	color: white;
	cursor: pointer;
	font-size: 1.1em;
	margin: 0;
	padding: 0px 12px;
	text-align: center;
	text-decoration: none;
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
	will-change: transform;
	
	background: linear-gradient(to left, black 50%, white 50%);
	background-size: 200% 100%;
	background-position:right bottom;
	transition: all 200ms cubic-bezier(.5, 1, 0.5, 1);
	
	filter: drop-shadow(0 0 0.2rem black);
}

.button:disabled {
	pointer-events: none;
}

.button:hover {
/*			box-shadow: rgba(1, 1, 1, 0.25) 0 8px 15px;*/
/*			transform: translateY(-2px);*/
background-position:left bottom;
color:black;
}

.button:active {
	box-shadow: none;
	transform: translateY(0);
}