html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

html {
	background-color: rgb(232, 91, 91);
}

body {
	line-height: 1;
	color: white;
	font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
	font-size: 20px;
	text-shadow:
	0px 0px 5px rgb(154, 23, 23),
	0px 0px 5px rgb(154, 23, 23),
	0px 0px 5px rgb(154, 23, 23);
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

.section > input {
	margin-bottom: 30px;
}

input {
	font-size: 24px;
	border: none;
	border-radius: 5px;
	outline: none;
	color: rgb(175, 13, 13);
	font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
	background-image: linear-gradient(180deg, white, white, rgb(255, 136, 136));
	box-shadow:
	0px 0px 5px rgb(154, 23, 23);
}

input:disabled {
	background-image: linear-gradient(180deg, rgb(202, 202, 202), rgb(202, 202, 202), rgb(194, 104, 104));
}

h6 {
	text-align: center;
	font-size: 24px;
	margin-bottom: 15px;
}

/* CLASSES */

.section {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 250px;
	padding: 10px;
	background-color: rgb(131, 19, 19, 0.3);
	box-shadow:
	0px 0px 5px rgb(131, 19, 19, 0.3);
}

/* IDS */

#header {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin: 20px auto 30px auto;
	font-size: 28px;
	width: 550px;
}

#main {
	display: flex;
	gap: 20px;
	margin: auto;
	width: 800px;
}

#substringButton {
	font-size: 28px;
	padding: 5px;
}

#substringButton:hover {
	background-image: linear-gradient(180deg, rgb(202, 202, 202), rgb(202, 202, 202), rgb(194, 104, 104));
}