:root {
	--pri1: #ffffff;
	--sec1: #000000;
	--pri2: #eeeeee;
	--sec2: #222222;
	--extra1: #bf601e;
	--extra2: #e8c90b;
	--extra3: #b8da39;
	--extra4: #20f9b2
}

.darkTheme {
	--pri1: #000000;
	--sec1: #ffffff;
	--pri2: #222222;
	--sec2: #eeeeee;
	--extra1: #bf601e;
	--extra2: #e8c90b;
	--extra3: #b8da39;
	--extra4: #20f9b2
}

.theme {
	cursor: pointer;
	height: 20px;
	width: 20px;
	position: absolute;
	right: 10px;
	top: 10px
}

body {
	background-color: var(--pri1);
	color: var(--sec1);
	font-family: "Mulish", Helvetica, sans-serif;
	font-size: 1rem;
	text-align: center
}

.container {
	margin-top: 4%;
	display: flex;
	justify-content: center
}

.container>img {
	position: absolute;
	width: 60%;
	z-index: -1
}

h1,
h2 {
	font-size: 1.5rem;
	font-weight: normal
}

a {
	color: var(--sec1);
	text-decoration: none;
	outline: 0
}

a :focus,
a :hover,
a active {
	color: var(--sec2)
}

p {
	margin: .5rem 0;
	line-height: 1.5
}

button {
	background-color: var(--pri1);
	color: var(--sec1);
	border: solid 1px;
	border-radius: 1.5rem;
	cursor: pointer;
	font-size: 1rem;
	height: 3rem;
	margin: 1rem;
	outline: none;
	padding: 10px 20px
}

button :focus,
button :hover {
	background-color: var(--pri2)
}

button :disabled {
	background-color: var(--pri2);
	border: none;
	cursor: default
}

button.blue {
	background-color: #0b76ef;
	color: var(--pri1)
}

.icon {
	cursor: pointer;
	fill: var(--sec1);
	stroke: var(--pri1)
}

th,
tr {
	background-color: var(--pri2);
	color: var(--sec2);
	padding: 0 2px;
	text-align: left
}

label {
	display: inline-block;
	width: 120px
}

input,
textarea {
	font-size: 1em;
	margin: 10px;
	max-width: 80%;
	padding: 10px;
	outline: none;
	text-decoration: none
}

input:disabled {
	background-color: var(--pri2)
}

select {
	background-image: url("arrow-down.svg");
	background-position: right;
	background-repeat: no-repeat;
	font-size: 1em;
	padding: 10px;
	width: 338px;
	border: none;
	appearance: none;
	outline: none
}

fieldset {
	border-style: none
}

.center {
	text-align: center
}

.stressed {
	color: #0b76ef
}

.line {
	margin: 10px 20px 10px 20px;
	padding: 10px 20px 10px 20px
}

.line>img {
	border-radius: 1rem;
	box-shadow: rgba(0, 0, 0, .2) 0px 5px 15px;
	width: 80%
}

.box-container {
	display: flex;
	flex-flow: row wrap;
	justify-content: center
}

.box-container .active {
	cursor: pointer
}

.box-container .box {
	border-radius: 1rem;
	color: var(--sec2);
	margin: 20px;
	padding: 10px;
	min-height: 300px;
	width: 300px;
	text-align: center;
	box-shadow: rgba(0, 0, 0, .7) 0px 5px 15px
}

.box-container .box .title {
	font-size: 1.25rem;
	padding: 10px
}

.box-container .box .subtitle {
	font-size: 1.1rem;
	margin: 0 0 0 10px
}

.box-container .box p {
	text-align: left;
	margin: 0 20px 5px 20px
}

.box-container .box .box-line {
	margin: 10px 20px 10px 20px;
	padding: 10px 20px 10px 20px
}

.box-container .box .box-line img {
	display: block;
	margin-left: auto;
	margin-right: auto
}

.box-container .box .box-line .icon {
	width: 64px;
	height: 64px
}

.default {
	background-color: var(--pri1)
}

.extra1 {
	background-color: var(--extra1)
}

.extra2 {
	background-color: var(--extra2)
}

.extra3 {
	background-color: var(--extra3)
}

.extra4 {
	background-color: var(--extra4)
}

.logo img {
	width: 100px;
	height: 100px
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(128, 128, 128, .9);
	display: block;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	padding: 0px;
	box-sizing: border-box
}

.overlay .overlayContent {
	position: relative;
	max-width: min(95%, 1000px);
	max-height: min(95%, 100vh - 40px);
	justify-content: center;
	align-items: center
}

.overlay .overlayContent img {
	max-width: 100%;
	max-height: calc(100vh - 40px);
	width: auto;
	height: auto;
	border: 1px solid #fff;
	box-shadow: 0 0 20px rgba(0, 0, 0, .5);
	object-fit: contain
}

.footer {
	font-size: .5em;
	margin-top: 20px
}

@font-face {
	font-family: "Mulish";
	src: url("/css/Mulish-Regular.ttf") format("truetype")
}

@media(min-width: 360px) {
	.box {
		margin: 10px
	}

	.box .square {
		width: 300px;
		height: 300px
	}

	.overlay {
		padding: 10px
	}

	.overlay .overlayContent {
		max-width: min(80%, 1000px);
		max-height: min(80%, 100vh - 40px)
	}

	.overlay img {
		border: 3px solid #fff
	}
}