@font-face {
    font-family: PixelCode;
    src: url("PixelCode.woff2");
}

* {
    padding: 0;
}

body {
    background-color: rgb(21 13 27);
    color: rgb(204, 198, 198);
    font-family: PixelCode, sans-serif;
    padding-right: 0;
}

@keyframes blink-caret {
    from,
    to {
        border-color: transparent;
    }
    50% {
        border-color: rgb(212, 212, 212);
    }
}

div.text {
    position: relative;
    top: 0;
    height: auto;
    text-wrap: nowrap;
    width: 100%;
    font-size: 13.3pt;
    margin-left: 8px !important;
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 0;
    padding-top: 0;
    padding-right: 0;
    margin-right: 0;
    overflow: scroll;
    scrollbar-width: none;
    z-index: 2;
}

div.text::-webkit-scrollbar {
    display: none;
}

div.text img:not(.glyph) {
    text-wrap: nowrap !important;
    max-width: 100%;
    width: auto;
    display: block;
}

div.text > div {
    text-wrap: nowrap !important;
}

div.text > div span {
    text-wrap: nowrap !important;
    z-index: 2;
}

div.text .cursor {
    padding-left: 0;
    width: fit-content;
    border-right: 0.4em solid rgb(212, 212, 212); /* The typewriter cursor */
    animation: blink-caret 0.75s step-end infinite;
}

div.text span:not(.cursor) {
    padding-right: 0 !important;
    margin-right: 0 !important;
    padding-bottom: 0 !important;
}

body input.hiddeninput {
    opacity: 0;
    position: fixed;
    left: 0;
    top: 0;
    width: 1px;
    height: 1px;
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
    pointer-events: auto;
    z-index: 1;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 50% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

.prompt,
.highlight {
    position: relative;
    background: #5bcefa;
    background: linear-gradient(
        45deg,
        #5bcefa 0%,
        #f5a9b8 33%,
        #ffffff 50%,
        #f5a9b8 66%,
        #5bcefa 100%
    );
    background-size: 200% 200%;
    color: transparent;
    animation: gradient-shift 6s linear infinite;
    overflow: hidden;
    background-clip: text;
}

.eightyEightByThirtyOne {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.eightyEightByThirtyOne a {
    padding-right: 2px;
}

.PFPs {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.PFPs a {
    padding-right: 5px;
}

.PFPs img {
    clip-path: circle();
}

.gallery {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.tooltip {
    position: absolute;
    color: #ffffff;
    background-color: #d96eb8;
    border: #2f004d 2px solid;
    padding: 3px;
    font-size: 12px;
    z-index: 10000;
    pointer-events: none;
}


@media (max-width: 768px) {
    body input.hiddeninput {
        width: 100%;
        height: 100%;
    }
}