:root {
    --bgclr: rgb(14, 14, 14);
    --sidebarOpacity: .5;
    --sidebarClr: #070707;
    --textClr: white;
    --sidebarWidth: 60px;
    --searchBarClr: rgba(0, 0, 0, 0.377);
    --headerHeight: 20px;
    --headerColor: var(--sidebarClr);
    --headerPadding: 10px;
    --secondaryClr: rgb(32, 32, 32);
}

html,
* {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.mainContent footer {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    background: var(--searchBarClr);
}

.mainContent footer img {
    aspect-ratio: 1/1;
    height: 150px;
}

.mainContent footer div a {
    color: white;
    font-weight: normal;
}

.gameheading {
    font-size: xx-large;
    text-align: left;
    width: 20%;
}

.info p {
    margin: 0;
}

.bigletter {
    font-size: x-large;
}

.info {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    padding: 10px;
    color: white;
    flex-grow: 0;
    max-width: 500px;
    /* Set a maximum width to prevent resizing */
}

.info p {
    width: 100%;
}

.writing {
    display: flex;
    width: 100%;
    justify-content: left;
    align-items: center;
    padding-bottom: 10px;
    padding-top: 10px;
}

.gothicexpandedone {
    font-family: "Special Gothic Expanded One", sans-serif;
    color: white;
}

.bigpurple {
    font-family: "Special Gothic Expanded One", sans-serif;
    color: rgb(98, 0, 255);
}

body {
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-color: var(--bgclr);
    margin: 0;
}

.shareFrame {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #070707b0;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 5;
}

.visible {
    opacity: 1;
}

.infodesc {
    width: 50%;
}

.bigtile {
    color: white;
    height: 300px !important;
    width: 500px !important;
    max-width: 100% !important;
    flex-shrink: 0;
}

.bigtile img {

    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

.shareInfo {
    z-index: 20;
    background-color: rgb(27, 27, 27);
    border-radius: 5px;
    color: rgba(255, 255, 255, 0.342);
    padding: 10px;
}

@media (max-width: 720px) {
    .writing {
        flex-direction: column;
        width: 100%;
    }

    .bigtile {
        width: 90% !important;
    }
}

.cookieconsent {
    background-color: rgb(0, 0, 0);
    border-radius: 5px;
    color: white;
    position: fixed;
    bottom: 0;
    right: 0;
    width: 500px;
    padding: 10px;
    margin: 10px;
    z-index: 20;
    max-width: 90%;
    display: flex;
    flex-direction: column;
}

.cookieconsent button {
    color: black;
    background-color: white;
    border: none;
    border-radius: 5px;
    margin: 5px;
}

.cookieconsent button:hover {
    cursor: pointer;
}

a {
    /*  width: 100%; */
    color: rgb(127, 197, 255);
    font-weight: bold;
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {

    --background-a-clr: rgba(98, 0, 255, 0.459);


    -webkit-box-shadow: -1px -31px 0px -9px var(--background-a-clr) inset;
    -moz-box-shadow: -1px -31px 0px -9px var(--background-a-clr) inset;
    box-shadow: -1px -31px 0px -9px var(--background-a-clr) inset;

}

.shareInfo div .link {
    background-color: rgba(0, 0, 0, 0.13);
    border: solid;
    border-width: 1px;
    border-radius: 50px;
    height: 20px;
    color: white;
    border-color: rgba(53, 53, 53, 0.342);
    overflow-y: hidden;
    resize: none;
    transition: all 0.2s ease;
    overflow-x: hidden;


}

.shareInfo div button {
    aspect-ratio: 1/1;
    height: 100%;
    width: auto;

    background-color: rgb(98, 0, 255);
    color: white;
    border: none;
    border-radius: 5px;
    margin-left: 5px;
}

.shareInfo div .link:focus {
    outline: none;
    border-color: #6200ff;
}

.shareInfo div {
    display: flex;
    flex-direction: row;
}

.shareInfo p {
    margin: 2px;
}

.sidebar {
    position: fixed;
    width: var(--sidebarWidth);
    margin-top: calc(var(--headerHeight) + var(--headerPadding));
    height: 100%;
    background-color: var(--sidebarClr);
    transition: width 0.2s ease;
    overflow-x: hidden;
    z-index: 10;
}

.blind p {
    color: white;
    font-family: 'Special Gothic Expanded One', sans-serif;
}

.blind span {
    color: rgb(98, 0, 255);
}

.sidebar:hover {
    width: 200px;
}

.section {
    transition: all 0.2s ease;
    width: 200px;
    border: inset;
    border-width: 0;
    display: flex;
    flex-direction: row;
    overflow-x: hidden;
    align-items: center;
    color: var(--textClr);
    text-decoration: none;
}

header {
    z-index: 10;
    position: fixed;
    background-color: var(--headerColor);
    padding: var(--headerPadding);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: var(--headerHeight);
}

header p {
    margin: 0;
    color: white;
    font-size: large;

    font-weight: 900;
    font-family: "Special Gothic Expanded One", sans-serif;
}

header p span {
    color: rgb(98, 0, 255);
    font-weight: 900;
    font-family: "Special Gothic Expanded One", sans-serif;
}

.imex

/* im = import button ex = export button */
    {
    background-color: rgb(98, 0, 255);
    color: white;
    border: none;
    outline: none;
    margin: 7.5px;
    padding: 7.5px;
    border-radius: 5px;
}

header svg {
    color: #ffffff;
}

.searchBox {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.search {
    border: none;
    outline: none;
    width: 90%;
    background-color: var(--searchBarClr);
    height: 30px;
    padding: 10px;
    font-size: large;
    border-radius: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    color: white;
}

.search textarea {
    background-color: rgba(0, 0, 0, 0);
    border: none;
}

.section:hover {
    --shadow-width: 5px;
    -webkit-box-shadow: inset var(--shadow-width) 0px 0px 0px rgba(255, 255, 255, 1);
    -moz-box-shadow: inset var(--shadow-width) 0px 0px 0px rgba(255, 255, 255, 1);
    box-shadow: inset var(--shadow-width) 0px 0px 0px rgba(255, 255, 255, 1);
}

.blind h1 {
    text-align: center;
    font-family: 'Special Gothic Expanded One', sans-serif;
    color: white;
}

a svg {
    min-width: 50%;
    min-height: 50%;
}

.iconholder {
    width: var(--sidebarWidth);
    height: var(--sidebarWidth);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mainContent {
    margin-top: calc(var(--headerHeight) + var(--headerPadding));
    margin-left: var(--sidebarWidth);
    width: calc(100% - var(--sidebarWidth));
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
}


.after {
    display: flex;
    flex-direction: row;
    width: 100%;
    flex-grow: 1;
}

.gameTile {
    width: 100%;
    height: 200px;
    border: solid;
    border-width: 1px;
    border-color: rgb(7, 0, 48);
    border-radius: 5px;
    background-color: rgb(7, 0, 48);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
}

.gameTile * {
    transition: all 0.2s ease;
}

.gameTile:hover {
    cursor: pointer;
    /* border-color: rgb(0, 102, 255); */
    transform: scale(1.025, 1.025);
}

.gameTile:hover .else {
    -webkit-box-shadow: -4px 1px 67px 26px rgba(0, 0, 0, 0.61) inset !important;
    -moz-box-shadow: -4px 1px 67px 26px rgba(0, 0, 0, 0.61) inset !important;
    box-shadow: -4px 1px 67px 26px rgba(0, 0, 0, 0.61) inset;
}

.gameTile .else p {
    min-height: 100%;
    margin: 10px;
    max-width: 100%;
    width: fit-content;
    min-width: 10%;
    text-align: center;
    margin: 0;
    /* font-weight: bold; */
    font-size: small;
    text-decoration: none;
    font-size: small;
    margin-left: 5px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.gameTile:hover .else p {
    min-width: 100%;

    margin-left: 0;
}

.gameTile .else {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0);
    margin: 0;
    text-align: left;
    color: rgb(0, 195, 255);

}

.gameTile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gameGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px,1fr));
    gap: 10px;
    margin-top: 20px;
    width: 98%;
    /*! align-items: center; */
    /*! justify-content: center; */
    /*! margin-inline: auto; */
    padding: 1%;
}

.gameGrid a {
    text-decoration: none;
}

.gameTile img {
    image-rendering: auto;
    border-radius: 5px;
}

.content {
    flex-grow: 1;
}

.blind {
    background-color: rgba(255, 255, 255, .5);
    width: 100%;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-top: 10px;
}

.container {
    background-color: var(--secondaryClr);
    width: 98%;
    /* min-height: 30px; */
}

.container p {
    margin: 0;
}

.transparent {
    background-color: rgba(0, 0, 0, 0) !important;
}

.border {
    border: none !important;
}

/*
    Loader CSS
*/

/* HTML: <div class="loader"></div> */
.loader {
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 8px solid #0000;
    border-right-color: #ffa50097;
    position: relative;
    animation: l24 1s infinite linear;
}

.loader:before,
.loader:after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: inherit;
    animation: inherit;
    animation-duration: 2s;
}

.loader:after {
    animation-duration: 4s;
}

@keyframes l24 {
    100% {
        transform: rotate(1turn)
    }
}

/*
 END
*/