* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	list-style-type: none;
}

html {
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	font-size: 62.5%;
	line-height: 1.7;
}

body {
	width: 100%;
	min-height: 100vh;
}

@media screen and (max-width: 700px) {
	html {
		font-size: 50%;
	}
	.container {
		width: 90%;
	}
}

.container {
	max-width: 60rem;
	margin: 5rem auto 0 auto;
	padding: 2rem;
	box-shadow: 0.1rem 0.1rem 0.5rem #948f8f;
}

.main-header {
	text-align: center;
	font-weight: 500;
	text-transform: uppercase;
	font-size: 5rem;
	letter-spacing: 0.35rem;
	margin-bottom: 2rem;
}

#mainForm {
	width: 100%;
	margin-bottom: 3rem;
}

.input-group {
	display: flex;
	flex-direction: column;
	margin-bottom: 1.5rem;
}

.label-title {
	font-size: 1.5rem;
	font-weight: 600;
	cursor: pointer;
}

input,
textarea {
	border: none;
	box-shadow: 0.1rem 0.1rem 0.5rem #ccc;
	outline: none;
}

input {
	text-transform: uppercase;
	height: 3.5rem;
	padding: 1rem 0 1rem 1rem;
	padding: 5px;
}

textarea {
	font-size: 1.8rem;
	max-width: 100%;
	height: 10rem;
	resize: none;
	padding: 5px;
}

button {
	margin-top: 2rem;
	padding: 1rem 1.8rem;
	font-size: 1.4rem;
	cursor: pointer;
}

button:first-of-type {
	margin-right: 1rem;
}

.table {
	border-top: 0.15rem solid #ccc;
	padding-top: 2rem;
}

.table-header,
.table-list {
	display: grid;
	grid-template-columns: 1fr 2fr 1fr;
	grid-gap: 2rem;
	text-align: center;
}

.table-list {
	margin-bottom: 1.5rem;
	border-bottom: 0.1rem solid #ccc;
}

.table-header {
	margin-bottom: 2rem;
}

.table-header h3 {
	font-size: 1.3rem;
	text-transform: uppercase;
}

.table-list li:first-child {
	align-self: center;
	font-size: 1.5rem;
	text-transform: uppercase;
}

.table-list li:nth-child(2) {
	text-align: center;
	font-size: 1.4rem;
	justify-self: center;
}

.icon-list {
	justify-self: center;
	align-self: center;
	height: 2.5rem;
	width: 2.5rem;
	border: 0.25rem solid #000;
	background: none;
	cursor: pointer;
	transition: 0.3s ease;
}

.icon-list i {
	line-height: 2.25rem;
	color: #ccc;
	font-size: 1.6rem;
}
