@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

:root {
	--dark: #121212;
	--light: #212121;
	--white: #ffffff;
	--accent1: #805D93;
	--accent2: #119da4;
}

* {
	font-family: Quicksand;
	font-weight: 500;
	color: var(--white);
	background-color: var(--dark);
}

table {
	border-collapse: collapse;
}

/* Textbox */
#userInput {
	background-color: var(--light);
	border: 0vw;
	padding-top: 1vw;
	padding-bottom: 1vw;
	width: 100%;
}
#userInput:focus {outline: 0vw;}