html, body {
    font-size: 14px;
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    background-color: #262730;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

header nav {
    border-bottom: 2px yellow solid;
    background-color: #262730;
    color: white;
    height: 75px;
}

header .top-bar-right {
    position: absolute;
    right: 0px;
    display: flex;
    align-items: center;
}

.header-title {
    color: white;
    text-decoration: none;
    font-size: 24px;
}
.header {
    text-align: center;
    margin-left: 20px;
    margin-top: 5px;
}

.header-title:hover {
    color: white;
}

.top-bar-right a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    margin-right: 30px;
}

    .top-bar-right a:hover {
        color: yellow;
    }

.fa-discord {
    color: white !important;
    margin-right: 5px;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

main {
    flex: 1;
}

.custom-footer {
    bottom: 0;
    width: 100%;
    color: silver;
    padding: 10px 0;
    border-top: 3px;
    border-top-color: yellow;
    border-top-style: inset;
    margin-top: auto;
    font-size: min(max(2vw, 8px), 14px);
    z-index: 10;
}

.footer {
    text-align: center;
}

    .footer h4 {
        font-family: Bebas-Neue;
    }

.footer-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-left: 55px;
    margin-bottom: 20px;
}

.footer-breadcrumbs-1 {
    display: flex;
    flex-direction: column;
}

    .footer-breadcrumbs-1 a {
        color: grey;
        margin-top: 5px;
    }

        .footer-breadcrumbs-1 a:hover {
            color: silver;
        }

#footerLogoFull {
    width: max(80px, 7vw);
    margin-top: 10px;
}

.affiliates {
    display: flex;
    justify-content: space-evenly;
}

    .affiliates img {
        max-width: 100%;
        max-height: 120px;
    }

    .affiliates a:hover {
        transform: scale(1.05);
    }