/* ----------------------------- */
/* GLOBAL */
/* ----------------------------- */

body{
background:#111;
color:#ddd;
font-family:system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
min-height:100vh;
display:flex;
flex-direction:column;
}

h1,h2,h3{
color:#fff;
}

/* Hauptbereich wächst damit Footer unten bleibt */

.page-content{
flex:1;
}

/* Container Breite */

.container-fluid{
max-width:1400px;
}

/* ----------------------------- */
/* NAVBAR */
/* ----------------------------- */

.navbar{
background:#000;
border-bottom:1px solid #333;
}

.navbar-brand{
font-weight:700;
letter-spacing:0.05em;
}

.nav-link{
color:#bbb !important;
}

.nav-link:hover{
color:#fff !important;
}

/* ----------------------------- */
/* CARDS */
/* ----------------------------- */

.card{
background:#1b1b1b;
border:1px solid #2a2a2a;
color:#ddd;
}

/* ----------------------------- */
/* LINKS */
/* ----------------------------- */

a{
color:#e6e6e6;
text-decoration:none;
}

a:hover{
color:#fff;
text-decoration:underline;
}

/* ----------------------------- */
/* FOOTER */
/* ----------------------------- */

.footer-min{
margin-top:auto;
padding:6px 0;
border-top:1px solid #2a2a2a;
background:#1a1a1a;
}

.footer-link{
color:#e6e6e6;
font-size:14px;
padding:2px 6px;
display:inline-block;
text-decoration:none;
}

.footer-link:hover{
color:#ffffff;
text-decoration:underline;
}