/*-
 * ╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲
 * NotDead.dev
 * ჻჻჻჻჻჻
 * Copyright 2025 NotDead.dev
 * ჻჻჻჻჻჻
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 * ╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱
 */

/* NotDead.dev fonts */
:root {
	--title-font: "Consolas", monospace;
	--heading-font: "Consolas", monospace;
	--content-font: "Poppins", monospace;

	--content-font-size: medium;
	--banner-font-size: 40px;
	--banner-font-weight: 800;

}

/* NotDead.dev colors */
body {
	--main-fgcolor: #212529;
	--banner-bgcolor: #00E99F;
	--banner-fgcolor: #000;
	--link-color: #005037;
	--alternate-bgcolor: #00E99F;
	--alternate-fgcolor: #212529;
}

body.dark {
	--link-color: #00E99F;
	--main-bgcolor: #262626;
	--main-fgcolor: #e9ecef;
}

/* NotDead.dev styles */
.notdead .btn.btn-primary {
	background-color: var(--alternate-bgcolor);
	border-color: var(--alternate-bgcolor);
	color: var(--alternate-fgcolor);
	text-decoration: none;
}

.notdead .btn.btn-primary:hover {
	background-color: var(--alternate-fgcolor);
	border-color: var(--alternate-bgcolor);
	color: var(--alternate-bgcolor);
}

.notdead .btn.btn-default {
	background-color: var(--main-bgcolor);
	border-color: var(--main-fgcolor);
	color: var(--main-fgcolor);
	text-decoration: none;
}

.notdead .btn.btn-default:hover {
	background-color: var(--main-fgcolor);
	border-color: var(--main-bgcolor);
	color: var(--main-bgcolor);
}

.notdead .label.label-primary {
	background-color: var(--alternate-bgcolor);
	color: var(--alternate-fgcolor);
}

