*, ::before, ::after {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
	background-color: black;
	color: #90ee90;
	text-align: center;
	font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
		"Lucida Sans", Arial, sans-serif;
}

h1 {
	margin: 0;
	padding: 0.7em 0;
}

p {
	margin: 0 auto;
	padding-bottom: 1em;
	font-size: larger;
}

p[name="urlOutput"] {
	width: fit-content;
	max-width: 67%;
}

#fullCite {
	margin-bottom: 1em;
}

h2 {
	margin-top: 1em;
}

a {
	color: #7cfc00;
	& :visited {
		color: #32cd32;
	}
}

footer {
	border-top: 1px solid white;
	margin-top: 1rem;
}

#disclaimer {
	margin-block: 1.2em;
	color: #f00;
}

#urlInput-Container {
	width: 720px;
	margin: 0 auto;
}

#urlInput {
	width: 100%;
	height: 2.5em;
	font-size: medium;
	border-radius: 10px;
}

button {
	display: inline-flex;
	margin: 10px auto 0;
	padding: 0.4em 0.75em;
	font-size: large;
	border-radius: 10px;
}

#notifContainer {
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	background-color: #10101080;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

#notifDiv {
	font-size: xx-large;
	padding: 25px;
	max-width: 90%;
	background-color: #353535;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 5px;
	position: relative;
}

#notifDivClose {
	position: absolute;
	top: 0;
	right: 0;
	color: red;
	font-size: x-large;
	padding: 0 5px 0 0;
	cursor: pointer;
}

#sourcesMain {
	display: flex;
	flex-wrap: wrap;
	max-width: 95%;
	margin: 0 auto 2em;
}

source-main-tab {
	display: flex;
	flex: 1;
	flex-direction: column;
	font-size: large;
	font-weight: bold;
	width: fit-content;
	padding: 0.7rem;
	background-color: darkblue;
	border: green solid 1px;
	align-items: center;
	justify-content: center;
	opacity: 0.65;
}

source-main-tab:hover,
source-main-tab[active] {
	opacity: 1;
}

source-main-tab select {
	display: none;
}

source-main-tab[active] select {
	display: block;
}
