@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@100;200;300;400;500;600&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Stencil:opsz,wght@10..72,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Inline:opsz,wght@10..72,100..900&display=swap');
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Roboto";
}

body {
	background: #121212;
}

nav ul li {
	list-style-type: none;
}

.flex-container {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	justify-content: center;
	background: #121212;
}

.flex-item {
	display: flex;
	flex-direction: column;
	align-items : space-between;
	width: 340px;
	height: auto;
	margin-top: 10px;
}

.flex-item h3, p {
	color: white;
	margin: 5px;
}

.flex-item img {
	border-radius : 5px;
}

.flex-item span {
	overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: white;
}

.flex-item .file-info {
	display: flex;
	justify-content: space-between;
	margin-top: -21px;
	background: black;
	opacity: 0.7;
	border-radius: 0 0 5px 5px;
	z-index: 1;
}

.flex-item .file-info span { 
	display: flex;
	color: white;
	font-size: 14px;
	margin: 0 10px;
}

.download-btn {
	display: flex;
	justify-content: center;
	border: 1px solid orange;
	border-radius: 5px;
	font-size: 16px;
	margin: 25px 5px 5px 5px;
	padding: 5px;
	text-decoration: none;
	background: black;
	color: orange;
}
