:root {
    --kt-white: #e6e6c4;
    --kt-darklite: #27272e;
    --kt-dark: #15151a;
    --kt-purple: #7d4ccd;
}

::-webkit-scrollbar {
    width: 0.5vw;
    height: 0.5vw;
}

/* Track */
::-webkit-scrollbar-track {
    background-color: var(--kt-dark);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--kt-darklite);
}

html {
    font-size: 14px;
    height: 100%;
    overflow-x: hidden;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.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;
}

body {
    min-height: 100vh;
    display: grid;
    overflow-x: hidden;
}

.main-div {
    width: 100vw;
}

.bg-dark-knot {
    background-color: var(--kt-dark);
}

.bg-darklite-knot {
    background-color: var(--kt-darklite);
}

.knot-btn-def {
    background-color: var(--kt-purple);
    color: var(--kt-white);
    transition: 0.1s;
}

    .knot-btn-def:hover {
        background-color: var(--kt-white);
        color: var(--kt-dark);
        transition: 0.1s;
    }

.knot-btn-xl {
    background-color: var(--kt-purple);
    border: none;
    padding: 12px;
    border-radius: 5px;
    color: var(--kt-white);
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: 0.2s;
    max-width: 270px;
    width: 270px;
}

.knot-btn-xl:hover {
    background-color: var(--kt-white);
    color: var(--kt-dark);
    transition: 0.1s;
}

.knot-btn-md {
    background-color: var(--kt-purple);
    border: none;
    padding: 8px;
    border-radius: 5px;
    color: var(--kt-white);
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: 0.2s;
    max-width: 180px;
    width: 180px;
    font-size: 16px;
}

    .knot-btn-md:hover {
        background-color: var(--kt-white);
        color: var(--kt-dark);
        transition: 0.1s;
    }

.text-knot-purple {
    color: var(--kt-purple);
}

.text-knot-white {
    color: var(--kt-white);
    text-decoration: none;
}

.icon-knot-white {
    color: var(--kt-white);
    transition: 0.1s;
    text-decoration: none;
}

    .icon-knot-white:hover {
        color: var(--kt-purple);
        transition: 0.1s;
        text-decoration: none;
    }

.text-knot-title {
    color: var(--kt-white);
    text-decoration: none;
    font-size: 1.25rem;
    transition: 0.1s;
    margin-right: 0.35rem;
    margin-left: 0.65rem;
}

    .text-knot-title:hover {
        color: var(--kt-purple);
        text-decoration: none;
        font-size: 1.25rem;
        transition: 0.1s;
    }

.knot-link {
    color: var(--kt-purple);
    transition: 0.1s;
}

    .knot-link:hover {
        color: var(--kt-white);
        transition: 0.1s;
    }


.knot-nav {
    color: var(--kt-white);
    transition: 0.1s;
}

    .knot-nav:hover {
        color: var(--kt-purple);
        transition: 0.1s;
    }

.navbar-picture {
    width: 2.25rem;
    height: 2.25rem;
    float: left;
    margin-right: 0.5rem;
    margin-left: 0;
    border: 2px solid;
    border-color: var(--kt-purple);
}

.btn-navbar{
    display: inline-flex;
    align-items: center;
    width: 8rem;
}

.knot-container
{
    width: 100%;
}

@media only screen and (min-width: 991px) {
    .page-container {
        display: inline-flex;
    }
}

@media only screen and (max-width: 991px) {
    .page-container {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
    }
}
.knot-box
{
    min-width: 120px;
    max-width: 280px;
}

.knot-nav-item
{
    height: 50px;
}

.knot-navtext {
    max-width: 89px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.knot-gamecard {
    width: 270px;
    height: 420px;
    transition: 0.2s;
}

    .knot-gamecard:hover {
        transition: 0.2s;
        transform: scale(1.01);
        box-shadow: 0 0 6px rgba(0,0,0,1);
    }

.knot-gamecard-textbox {
    width: inherit;
    height: inherit;
    position: relative;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 70%, #000000 100%);
    display: flex;
    align-items: flex-end;
    text-align: center;
    font-size: 20px;
}

.knot-gamecard-image {
    width: inherit;
    height: inherit;
    object-fit: cover;
    position: absolute;
}

.text-muted-dark {
    color: #bbbbbb !important;
}

.icon-white {
    color: white !important;
}


.footer {
    align-self: end;
    width: 100%;
    white-space: nowrap;
    line-height: 60px;
}