@import url('gold.css');

@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;
    width: 100dvi;
    overflow: hidden;
}

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

main {
	color: navy;
	background: bisque;
	text-align: center;
	font-size: 1.5rem;
	line-height: 2rem;
	margin: 2rem;
	padding: 2rem;
	gap: 5rem;
    text-shadow: 1px 1px 1px white;
    z-index: 1;
}

h1 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	line-height: 2rem;
    font-weight: bold;
   	justify-self: left;
    span {
    	justify-self: left;
    }
}

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