
* {
	box-sizing: border-box;
	margin: 0px;
	padding: 0px;
	outline: none;
}

html {
	height: 100%;
}

body {
	color: #fc4831;
	font-family: arial;
	letter-spacing: 0.04em;
	font-weight: bold;
	font-size: 21px;
	height: 100%;
	display: flex;
	flex-direction: column;
}

h1 {
	font-size: 1.3em;
}

h2 {
	color: black;
	opacity: 0.8;
	font-size: 1em;
}

a {
	color: #1182ec;
	font-weight: normal;
}

input[type="password"] {
	font-size: inherit;
	font-weight: inherit;
	font-family: inherit;
	color: inherit;
	letter-spacing: inherit;
}

input[type="password"]::placeholder {
	opacity: 0.2;
}

#content {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: stretch;
}

#content > * {
	justify-content: center;
	text-align: center;
}

#title {
	display: flex;
	align-items: center;
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: 19%;
}

#data {
	display: flex;
	flex-grow: 0;
	flex-shrink: 0;
	flex-direction: column;
	align-items: stretch;
	flex-basis: 81%;
	justify-content: space-around;
}

#data > * {
	justify-content: center;
}

#selector {
	display: flex;
	flex-basis: 67%;
	flex-grow: 1;
	flex-shrink: 0;
	align-items: center;
}

#select {
	display: flex;
	flex-direction: column;
	justify-content: center;
	cursor: pointer;
	border-radius: 50%;
	width: 230px;
	height: 230px;
	border: 5px dashed #fc4831;
	align-items: center;
	flex-grow: 0;
	flex-shrink: 0;
}

#select > .text {
	opacity: 0.2;
}

#select > .image {
	font-size: 4.5em;
	line-height: 1.05em;
}

#chooser {
	display: none;
}

#values {
	display: flex;
	flex-direction: column;
	align-items: center;
}

#values > * {
	margin: 5px;
}

#name, #password {
	color: black;
	opacity: 0.6;
}

#password {
	padding: 4px;
	text-align: center;
	border-width: 0px;
}

#uploader {
	flex-basis: 33%;
	flex-shrink: 0;
	flex-grow: 1;
	display: flex;
	align-items: stretch;
}

#uploader > * {
	width: 100%;
}

#upload, #download {
	justify-content: space-between;
	flex-direction: column;
	display: flex;
}

#download #action {
	padding: 0.65em 1.13em;
}

#upload > #controls {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	justify-content: center;
	align-items: center;
}

#upload > #controls > * {
	margin: 5px;
}

#upload > a, #download > a {
	text-decoration: none;
	font-weight: bold;
}

#action {
	background-color: #fc4831;
	color: white;
	display: inline;
	padding: 0.65em 2em;
	border-radius: 0.85em;
	text-align: center;
	cursor: pointer;
}

#result {
	display: flex;
	flex-direction: column;
	align-items: center;
	cursor: pointer;
	justify-content: center;
}

#result > * {
	margin: 0.5em;
}

#link {
	display: flex;
	flex-direction: row;
	align-items: center;
}

#stub {
	width: 25px;
	margin-right: 8px;
}

#url {
	color: #1182ec;
	width: 100%;
	overflow-wrap: break-word;
	text-align: center;
}

#clip {
	width: 25px;
	opacity: 0.4;
	margin: 0px 8px 6px;
}

#copy {
	color: black;
	opacity: 0.25;
	font-weight: normal;
	font-size: 0.8em;
}

#status {
	display: flex;
	width: 100%;
	height: 32px;
	align-items: center;
	padding: 0px 10px;
}

#progress {
	width: 0%;
	height: 50%;
	background-color: #fc4831;
}

#downloader {
	display: flex;
	flex-basis: 67%;
	flex-grow: 1;
	flex-shrink: 0;
	flex-direction: column;
	justify-content: center;
}

#downloader > * {
	margin: 18px;
}

#downloader > #values {
	margin: 9px;
}

#downloader > .comment {
	color: black;
	opacity: 0.25;
	font-weight: normal;
	font-size: 0.8em;
	margin: 30px;
}

.index {
	display: flex;
	flex-basis: 33%;
	flex-grow: 1;
	flex-shrink: 0;
	flex-direction: column;
}

.hidden {
	display: none !important;
}

@media (max-width: 500px) {

	body {
		font-size: 19px;
	}

	h1 {
		font-size: 1.2em;
	}

	#progress {
		height: 30%;
	}

}

@media (max-width: 400px) {

	body {
		font-size: 16px;
	}

	#select {
		width: 210px;
		height: 210px;
	}

}

@media (max-width: 360px) {

	body {
		font-size: 15px;
	}

	#select {
		width: 190px;
		height: 190px;
	}

	#progress {
		height: 25%;
	}

}

@media (max-height: 640px) {

	body {
		font-size: 18px;
	}

	#select {
		border-width: 4px;
	}

	#progress {
		height: 25%;
	}

}

@media (max-height: 600px) {

	body {
		font-size: 16px;
	}

	#select {
		width: 200px;
		height: 200px;
	}

}

@media (max-height: 540px) {

	body {
		font-size: 13px;
	}

	#select {
		border-width: 3px;
		width: 160px;
		height: 160px;
	}

	#controls > #values > * {
		margin: 2px;
	}

}

@media (max-height: 420px) {

	body {
		font-size: 12px;
	}

	#title {
		display: none;
		flex-basis: 0%;
	}

	#data {
		flex-basis: 100%;
	}

	#select {
		border-width: 2px;
		width: 150px;
		height: 150px;
	}

	#controls > #values > * {
		margin: 1px;
	}

	#downloader {
		flex-basis: 100%;
	}

	.index {
		display: none;
		flex-basis: 0%;
	}

}

