@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;
    mix-blend-mode: difference;
    z-index: 1;
    &[human="1"] {
        mix-blend-mode: normal;
        font-family: "lusitana", system-ui;
    }
    > * {
        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;
}

#btnctn {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    width: auto;
    button {
        img {
            width: 2rem;
            aspect-ratio: 1/1;
            padding: 0.2rem;
        }
    }
}

.red {
    background: green;
}

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