/* For UI v3.1 */

.element {
	margin-bottom: 10px;
	width: 350px;
	height: 75px;
	margin-right: 15px;
	font-family: "Cascadia Mono", "Segoe UI Mono", "Liberation Mono", Menlo, Monaco, Consolas, monospace;
	overflow-wrap: break-word;
	word-wrap: break-word;
	word-break: break-all;
	overflow: hidden;
	display: inline-block;

	background-color: lightgrey;
	border-radius: 10px;
	border: 5px solid orange;
	box-shadow: 5px 10px 10px #505050;

	transition: border-color .15s linear, height .15s linear;
}
.element:hover {
	border-color: blue;
	text-decoration: none;
	height: 100px;
}
.element:active {
	border-color: red;
}
.element img {
	width: 55px;
	height: 55px;
	margin: 5px 5px;
	margin-bottom: 20px;
	float: left;
}
.element p {
	margin: 6px 5px;
}

.folder {
	width: 355px;
	height: 50px;
	border-radius: 5px;
	border: 2px solid orange;
}
.folder img {
	width: 35px;
	height: 35px;
	margin: 2px 7px;
	float: left;
}
.folder:hover {
	height: 50px;
}

#more_info {
	padding: 10px;
	background: white;
	position: absolute;
}

@media (pointer:none), (pointer:coarse) and (max-aspect-ratio: 13/9) {
	.element {
		font-size: 29px;
		text-align: center;
		height: 205px;
		border: 8px solid orange;
		border-radius: 10px;
	}
	.element:hover {
		height: 275px;
	}
	.element img {
		width: 80px;
		height: 80px;
		margin: 5px 130px;
	}

	.folder:hover {
		height: 205px;
	}

	.normal_text {
		font-size: 35px;
	}

	#more_info {
		padding: 20px;
		font-size: 35px;
	}
}
