:root {
	--color-one: 221,214,243;
	--color-two: 250,172,168;
	--font-one: 'gill sans',sans-serif;
}

body {
	margin: 0;
	padding: 0;
	background: url('./background.jpg');
	background-attachment: fixed;
	background-position: center;
	background-repeat: norepeat;
	background-size: cover;
	font-family: var(--font-one);
}

abbr {
	text-decoration: none;
}

.title {
	text-align: center;
	background: rgba(0,0,0,0.15);
	height: 20vh;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0px 2px 8px rgba(0,0,0,0.35);
}

.title a {
	text-decoration: none;
	color: rgba(255,255,255,1);
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: black;
	font-size: 64px;
	color: white;
}

.title a:hover, .sub-title:hover {
	-webkit-text-stroke-color: rgba(var(--color-one),1);
	-webkit-text-stroke-width: 0.1vmin;
}

.title .sub-title {
	font-size: 18px;
	padding-top: 12px;
	-webkit-text-stroke-width: 0;
}

.container {
	min-height: calc(100vh - 20vh - 5vh - 5vmax);
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 2.5vmax 0;
}

.content {
	background: rgba(255,255,255,0.25);
	min-height: 70%;
	width: auto;
	border-radius: 14px;
	box-shadow: 0px 0px 8px rgba(0,0,0,0.5);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 2vmax 2vmin;
	text-align: center;
	backdrop-filter: blur(4px);
}

.content button {
	margin: 1vmin 0;
	width: 10vmax;
	height: 2vmax;
	background: rgba(230,230,230,1);
	cursor: text;
	outline: none;
	border-radius: 4px;
	transition: border-bottom 0.2s;
}

.content button:hover {
	border-bottom: 0.5vmin solid black;
	box-shadow: 0px 0px 4px grey;
	cursor: pointer;
}

#page-title {
	font-size: 4vmin;
	color: white;
}

form {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	margin-block: 0;
}

div.form-container {
	display: flex;
	justify-content: center;
	align-items: center;
}

div.form-container-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0 1vmin;
}

form input {
	margin: 12px 0;
	margin-right: 4px;
	width: 10vmax;
	height: 2vmax;
	padding: 0 1em;
	background: rgba(230,230,230,1);
	cursor: text;
	outline: none;
	border-radius: 4px;
	transition: border-bottom 0.1s;
}

#address { width: 100%; }

form input[type=submit] {
	margin: 12px 0;
	width: 10vmax;
	height: 2vmax;
	padding: 0 1em;
	background: /*rgba(230,230,230,1)*/ rgb(var(--color-two));
	cursor: pointer;
	outline: none;
	border-radius: 4px;
	transition: border-bottom 0.1s;
}

form input:hover {
	border-bottom: 0.5vmin solid black;
	box-shadow: 0px 0px 4px grey;
}

form input:focus {
	border-bottom: 0.5vmin solid rgba(var(--color-one));
}

form select {
	margin: 12px 0;
	margin-right: 4px;
	width: 5vmax;
	height: 2vmax;
	padding: 0 1em;
	background: rgba(230,230,230,1);
	cursor: text;
	outline: none;
	border-radius: 4px;
	transition: border-bottom 0.1s;
}

form select option {
	min-height: 2vmax;
}

table td, table td input {
	margin: 0;
}

.itemFormOptions {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: auto;
	border: none;
	height: 100%;
}

.footer {
	height: 5vh;
	background: rgba(0,0,0,0.15);
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0px -2px 8px rgba(0,0,0,0.35);
	color: white;
	position: relative;
}

.footer p {
	padding: 0;
	margin: 0;
}

.footer span#heart, span#earth {
	font-size: 12px;
}

.footer a:active, .footer a:link, .footer a:visited {
	text-decoration: none;
	color: rgba(var(--color-two),1);
}

.footer a:hover {
	text-decoration: none;
	color: white;
	text-shadow: 0px 0px 4px black;
}

abbr {
	text-shadow: 0px 0px 4px black;
	font-size: 18px;
}

label {
	color: white;
}

table {
	margin-top: 1.5vmin;
	margin-bottom: 1.5vmin;
	text-align: left;
	color: white;
	border-collapse: collapse;
}

th {
	text-align: center;
}

tr > * {
	padding: 8px;
}

.user-details {
	color: white;
	font-size: 1.75vmin;
	display: flex;
	align-items: center;
	justify-content: space-around;
	width: 100%;
	background: rgba(0,0,0,0.35);
	border-radius: 4px;
}

.user-details p {
    padding: 0 8px;
}

#table td {
	margin: 0;
	padding: 0 4px;
}

img {
	margin: 12px 2px;
	border: 1px solid transparent;
	height: calc(2vmax - 12px);
	width: calc(2vmax - 12px);
}

img:hover {
	border: 1px solid black;
}