
	* {
		box-sizing: border-box;
	}

	body {	
		margin: 0;
		padding: 20px;
		font-family: "Roboto", sans-serif;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding-bottom: 100px;
	}
	
	.logo-container {
		position: relative;
	}
	
	.logo {
		height: 120px;
	}
	
	.explosion {
		position: absolute;
		right: -50px;
		bottom: 20px;
		height: 100px;
	}
	.explosion-2 {
		position: absolute;
		left: 0;
		top: 0;
		height: 100px;
	}

	#uppy {
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 40px;
	}

	#files-list {
		width: 100%;
		max-width: 750px;
		display: flex;
		justify-content: flex-start;
		align-items: stretch;
		flex-wrap: wrap;
		grid-gap: 20px;
		opacity: 0;
		pointer-events: none;
		transition: 0.5s;
	}

	.files-list-visible {
		opacity: 1 !important;
		pointer-events: auto !important;
	}
	
	#mass-downloader-container {
		width: 100%;
	}
	
	#mass-downloader {
		padding: 10px;
		background-color: #f47c09;
		color: #fff;
		border-radius: 3px;
		display: table;
		color: #fff;
		border-radius: 3px;
		cursor: pointer;
	}
	
	#files-list a {
		text-decoration: none;
		padding: 10px 0px;
		border-bottom: solid 1px;
	}