:root {
    --text: #fff;
	--bg: #060d0e;
	--sans: system-ui, 'Segoe UI', Roboto, sans-serif;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    height: 100svh;
	min-height: 100svh;
    width: 100svw;
	font-family: var(--sans);
    color: var(--text);
    background: var(--bg);

	font-synthesis: none;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;

    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

a {
    color: inherit;
    text-decoration: none;
}

hr {
    width: 90%;
    height: 1px;
    margin: 2rem 0;
    border: 0;
    background: var(--text);
}

h1 {
    margin: .5em;
}

#container {
    height: 100%;
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

#logo {
    width: 50%;
}
