@import url(https://fonts.bunny.net/css?family=hanken-grotesk:400,500,600,700|rubik:400,500);
:root {
	--yellow: #ffcc01;
	--blur-size: 8px;
}

* {
	font-family: 'Rubik', sans-serif;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.block-font {
	font-family: 'Hanken Grotesk', sans-serif;
	font-weight: 700;
	font-style: normal;
}

.red-border-bottom {
	border-bottom: 3px solid #ca0033;
}
.red-border-top {
	border-top: 3px solid #ca0033;
}

.header {
	display: flex;
	flex-direction: row;
}

#rootDiv {
	display: flex;
	flex-direction: column;
	width: 100vw;
	height: 100vh;
	padding: 0 2.5rem;
}

#browser {
	display: flex;
	flex-direction: row;
	width: 100%;
	flex: 1 1 auto;
	overflow: auto;
}

#nav-container {
	width: 15rem;
}

#files-Box {
	position: relative;
}

#files-Box::after {
	/* box-shadow: inset 0 .5rem 1rem rgba(0,0,0, .15); */
	content: '';
    box-shadow: inset 0 0 3rem rgba(0,0,0, .5);
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.nav-link {
	color: rgba(255, 255, 255, .45);
	margin: .5rem;
}

.home {
	color: var(--yellow);
	font-size: 2rem;
}

.nav-link:hover {
	color: white;
}

.nav-link:focus {
	color: var(--yellow);
}

.active {
	color: var(--yellow);
}

/* .file-item > .card {
	max-width: 20rem;
	width: 100%;
} */

#files-container .card-text {
	margin: 0 !important;
}

#files-container i {
	font-size: 4rem;
	text-align: center;
	color: var(--yellow);
}

.file-item > a {
	display: block;
}

@media (max-width: 1199.98px) {
	#rootDiv {
		padding: 0 1rem !important;
	}

	.file-item {
		width: 100%;
	}
}

@media (min-width: 1200px) {
	.file-item > a {
		transition: all 250ms ease-out;
	}
	
	.file-item > a:hover {
		transform: translateY(-4px) scale(1.02, 1.02);
		box-shadow: 0 .5rem 1rem rgba(0,0,0, .15);
	}
}
