@font-face {
	font-family: monocraft;
	src: url("../res/Monocraft.otf");
}

@font-face {
	font-family: rajdhani;
	src: url("../res/rajdhani.ttf");
}

body {
    font-family: rajdhani;
}

#links-container {
    max-width: calc(100% - 40px);
    width: calc(100% - 40px);
    margin: 0 auto;
    gap: 16px;
    color: azure;
    column-count: 4;
    page-break-inside: avoid;
    -webkit-column-break-inside: avoid;
}

.item-box {
    margin: 0;
    border: 1px solid #0f0f0f;
    display: table;
    width: 100%;
    page-break-inside: avoid;
    -webkit-column-break-inside: avoid;
    break-inside: avoid-column;
}

.link-header {
    background: black;
    padding: 4px 0 6px;
    text-align: center;
}

.box-inner {
    background-color: #10132433;
    border: 1px solid #0f0f0f;
}

.sub-item {
    margin: 10px 0;
}

.sub-header {
    background-color: rgba(32,41,60,.3);
	text-align: left;
	padding: 2px 0 4px 12px;
	margin-bottom: 12px;
	font-size: .9em;
	border-top: 1px solid #191f28;
	border-bottom: 1px solid #191f28;
	color: whitesmoke;
}

.item {
    margin: 0 0 10px 12px;
    text-align: left;
}

.item a {
    /* text-decoration: none; */
    color: gray;
    margin: 0 0 10px 12px;
    text-align: left;
    text-decoration: underline;
}

.item::before {
    content: "•";
    padding-right: 10px;
    text-decoration: none;
}

.item a:hover {
    color: whitesmoke;
}