@import url('gold.css');

@import url('https://fonts.googleapis.com/css2?family=Alien+Block&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Knewave&display=swap'); */

/* @font-face { */
/*     font-family: 'firacode'; */
/*     font-weight: normal; */
/*     src: url('/static/fonts/FiraCode.ttf'); */
/* } */
/*  */
/* @font-face { */
/*     font-family: 'lusitana'; */
/*     font-weight: normal; */
/*     src: url('/static/fonts/Lusitana.ttf'); */
/* } */

:root {
	--black: #1c1c1c;
}

body {
    background: var(--black);
    /* font-family: 'lusitana', system-ui; */
    font-family: 'Alien Block', system-ui;
    width: 100dvi;
    overflow: hidden;
}

video {
	width: 100dvi;
	height: 100dvb;
	object-fit: cover;
}

main {
	color: navy;
	text-align: center;
	font-size: 1.5rem;
	line-height: 2rem;
	margin: 2rem;
	gap: 5rem;
    text-shadow: 1px 1px 1px white;
    z-index: 1;
    mix-blend-mode: difference;
    > * {
		background: bisque;
		width: 100%;
		padding: 1rem;
		box-shadow: inset 5px 0px 5px 2px navy;
		border-radius: 2rem;
    }
}

h1 {
	font-size: 2rem;
	line-height: 3rem;
    font-weight: bold;
}

.button {
	background: lightblue;
	outline: 2px solid black;
	padding-inline: 1rem;
	border-radius: 1rem;
	cursor: pointer;
}
