root {
	font-size: 62.5%;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	height: 100%;
}

body {
	position: fixed;
	display: flex;
	flex-direction: column;
	align-items: center;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;

	background-color: #1c1a2b;
	color: #dddddd;

	font-size: 1em;
	line-height: 1.3em;
	letter-spacing: 0.1em;
	font-family: 'Cairo', sans-serif;
}

header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  height: 2em;
  background-color: #eeeeff20;
}

main {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
	width: 95%;
	max-width: 50em;
  height: calc(100% - 2em);
}

hr {
	width: 100%;
	border-color: #ffffff44;
}

/* .background {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-image: url(./background.png);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-filter: blur(10px) brightness(0.2);
	filter: blur(10px) brightness(0.2);
} */

.boxes {
  position: relative;
  display: flex;
  justify-content: space-evenly;
  width: 100%;
	max-width: 40em;
}

.boxes .box {
  position: relative;
  display: flex;
	flex-direction: column;
	gap: 0.5em;
  width: 45%;
	padding: 1em;
}

.boxes .box > * {
	height: 1.6rem;
}

.boxes .box:first-of-type {
  border: 0.15em solid #ffffff88;
}

.conclusion {
  position: relative;
  display: block;
  text-align: center;
	max-width: 80%;
}

.info {
  position: relative;
  display: block;
  max-width: 90%;
  padding: 1em;
  list-style-type: none;
  font-size: 0.8em;
}


.shadow-box {
  border-radius: 0.25em;
  background-color: #00000040;
}

.relevant {
	/* background-color: #00000010; */
	color: #88ff88;
}


label {
	position: relative;
	display: flex;
	align-items: center;
	gap: 1em;
	white-space: nowrap;
}

label input[type="number"] {
	position: relative;
	display: block;
	height: 100%;
	border: none;
	background-color: #00000030;
	font-family: inherit;
	font-size: inherit;
	color: inherit;
	flex: 1;
	padding: 0 0.4rem;
	border-bottom: 0.2rem solid #00000080;
	border-radius: 0.2rem;
}


@media (orientation: portrait) and (max-width: 600px) {
	.boxes {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
	}

	.boxes .box {
		width: 90%;
		max-width: unset;
	}
}
