html{
	width:100%;
	height:100%;
	padding:0;
	margin:0;
}
body{
	font-family:Arial;
	width:100%;
	height:100%;
	padding:0;
	margin:0;
	background-image: url('dreiecke.png');
	background-repeat: no-repeat;
  	background-attachment: fixed;
	background-position: 50% 50%;
	background-size: cover;
}

.container{
	position:absolute;
	left:50%;
	transform:translateX(-50%);
	    width: 100%;
}

.randomContainer{
	position:absolute;
	left:50%;
	top:50%;
	transform:translate(-50%, -50%);
	background-color:rgba(255,255,255,0.6);
	padding: 0px 20px 10px 20px;
	
}

button{
	background-color:rgba(255,255,255,0.9);
	font-size: 14pt;
	border:none;
	padding: 10px 30px;
}

.headline{
	margin:10px 0 20px 0;
	font-size:32px;
	background-color:rgba(255,255,255,0.6);
	padding: 10px 30px;
	text-align:center;
}

.entry{
	width:100%;
	padding: 5px 10px;
	height:60px;
	box-sizing:border-box;
	background-color:rgba(255,255,255,0.55);
	margin: 10px 0;
	cursor:pointer;
	transition: all 0.5s ease-in-out;
}

.entry:hover{
	background-color:rgba(255,255,255,0.7);
}

.entryParts{
	display:flex;
	flex-wrap:wrap;
	max-height:60px;
	line-height: 50px;
	align-items: center;
}

.icon{
	max-width:40px;
	margin-right: 20px;
}

.folderContainer{
	display:none;
}

.folderOpen{
	height:auto;
}