@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');
body {
    font-family: "Lexend", BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1.55em;
    padding: 0 1em;
}

h2 {
    font-size: 1.45em;
}

a {
    text-decoration: none;
    color: #ffffff;
}

h2 a {
	background: #161616;
	border-radius: 5px;
	padding-inline: 0.15em;
}

h2 a:hover {
	border-radius: 5px;
	width: 10px;
	height:50%;
	color: #161616;
	background: #ffffff;
}

 ul {
    padding: 0;
}

li {
    list-style-type: none;
    display: flex;
    align-items: center;
    padding: 0;
//	opacity: 0;
	opacity: 1;
	transition: opacity 0.7s;
}

li .icon, li .noicon, li .download {
    min-height: 1.5em;
    min-width: 1.5em;
	background-size: 1.5em;
    background-repeat: no-repeat;
	border-radius: 5px;
}

body {
    background: #161616;
    color: #ffffff;
}

a:visited {
    color: #ffffff;
}

.dir .icon {
    background-image: url('./folder.svg');
    background-size: 0.9em;
    background-position: center;
}

.pdf .icon {
    background-image: url('./pdf.svg');
    background-size: 0.9em;
    background-position: center;
}

separator {
    font-size: 60%;
    position: relative;
    bottom: 5.5px;
    font-weight: 200;
}

.dir, .pdf {
	border-radius: 5px;
	margin: 0.2em;
}

.dir a, .pdf a {
	position: relative;
	line-height: 1.5em;
	padding-left: 0.18em;
	padding-right: 0.18em;
	margin-left: 0.23em;
	border-radius: 5px;
	vertical-align:middle;
	transition: background-color 0.2s, color 0.2s;
}

.pdf:hover  a, .dir:hover a, .pdf:hover .icon, .dir:hover .icon {
	color: #161616;
	background-color: #ffffff;
	border-radius: 5px;
}

.pdf, .dir, a, .icon, .pdf a, .dir a {
    transition: background-color 0.2s, color 0.2s;
    transition-timing-function: ease-in-out;
}

 .download {
    display: none;
}

 space a:hover {
    text-decoration:none;
}

.download a {
    margin-right: 0px !important;
}

li a {
    display: block;
    margin: auto;
    position: relative;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-thumb {
    background: #ffffff;
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: padding-box; // <== make the border work
}

::-webkit-scrollbar-thumb:hover{
    border: 0;
}

::-webkit-scrollbar-track {
    background: transparent;
}
text {
	padding-inline: 0.15em;
}
maintitle:hover img, maintitle:hover a  {
	background: #45aab8;
	color: #161616;
}
img {
    position: relative;
    top: 9px;
    padding: 0.265em;
    border-radius: 6px;
	transition: background-color 0.2s, color 0.2s;
}

.fadein {
    animation: fadeIn 0.2s 1;
    animation-fill-mode: forwards;
}

@keyframes fadeIn {
    0% {
//      opacity: 0;
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}
