html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	background: transparent;
	border: 0;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}

ul {
    list-style-position: inside;
}

:root {
    --background: black;
    --gold-base: #E8BC00;
    --blue-base: #2f2e2e;
    --logo-color: #fada53;
    --bs-dropdown-bg: black;
    --bs-nav-link-font-size: min(30px, 4vw);
    --bs-dropdown-min-width: 100vw;
}
.dropdown-menu {
    background-color: black;
    --bs-dropdown-border-color: transparent !important;
    --bs-dropdown-border-radius: 0px !important;
}

.dropdown-menu-full {
    margin-top: 0px;
    min-width: 100vw;
    border: none;
}


body {
	background-color: var(--background);
	font-family: 'YK', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: var(--gold-base);
    font-size: 18px;
    font-weight: 200;
}

a {
    color: inherit;
}
h1 {
    font-family: 'OpenSans', sans-serif;
}

.default-width {
    max-width: 1470px; 
    margin-left: auto; 
    margin-right: auto;
}
.narrow-width {
    max-width: 900px; 
    margin-left: auto; 
    margin-right: auto;
}

.footer {
    font-family: 'YK-Light', sans-serif;
}


.fancy-div-bar {
    width: 42px;
    height: 5px;
    background: var(--gold-base);
}

.nav-link {
    font-weight: 400;
    color: var(--bs-navbar-active-color);
    font-family: 'YK-Light', 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    letter-spacing: .15rem;
    padding-top: 0;
}

.nav-link-major {
    font-weight: 400;
    color: var(--gold-base);
    font-family: 'YK-Light', 'YK-Light', 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    letter-spacing: .15rem;
    padding-top: 0;
}

.dropdown-item {
    font-size: var(--bs-nav-link-font-size);
}
.dropdown-item:active {
    background-color: var(--gold-base);
}

.f-title {
    font-family: 'YK-Bold', 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    letter-spacing: .12em;
    font-size: 2.7rem;
}

.general-content {
    font-family: 'Source Sans 3', sans-serif;
    line-height: 3em;
}
.general-content p {
    font-size: 1.5rem;
    color: white;
}
.general-content li {
    color: white;
    padding-top: 10px;
    font-size: 1.5rem;
}
.general-content li::marker {
    color: var(--gold-base);
    
}

.vanity-image {
    border-color: var(--gold-base);
    border-style: solid;
    border-radius: 5px;
    border-width: 2px;
}

.blur-target {
    -webkit-filter: blur(50px);
    -moz-filter: blur(50px);
    -o-filter: blur(50px);
    -ms-filter: blur(50px);
    filter: blur(50px);
    animation: blurSlow 0.25s linear;
}

.nav-link:hover {
    color: var(--gold-base) !important;
}

@keyframes blurSlow {
    0% { 
        -webkit-filter: blur(0px);
        -moz-filter: blur(0px);
        -o-filter: blur(0px);
        -ms-filter: blur(0px);
        filter: blur(0px);
     }
    100% { 
        -webkit-filter: blur(50px);
        -moz-filter: blur(50px);
        -o-filter: blur(50px);
        -ms-filter: blur(50px);
        filter: blur(50px);
     }
  }

@media (max-width: 1000px) { 
    .vanity-image {
        height: 20vh;
        overflow-y: hidden;
        object-fit: cover;
    }
    .general-content {
        padding: 20px;
    }
    .navbar-brand img {
        height: 40px;
    }
    .nav-link {
        font-size: 22px;
    }
}