:root{
    --background: #222226;
    --navbar: #111116;
    --green: #14aa23;
    --kitsuneko-purple: #fe16d7;
    --kitsuneko-blue: #01fee1;
    --kitsuneko-lavender: #c6abfe;
    --kitsuneko-gradient: linear-gradient(135deg, var(--kitsuneko-purple), var(--kitsuneko-blue));
}

* {
    box-sizing: border-box;
}

html, body{
    font-family: "Roboto Mono", Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', monospace;
    background-color: var(--background);
    color: white;
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: flex-start;
    overflow-x: hidden;
    scroll-behavior: smooth;
    height: 100%;
    width: 100%;
    font-weight: 500;
    font-size: 1.1em;
}

img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

li{
    display: list-item;
}

ul{
    display: block;
}


a{
    color: white;
}

a:visited{
    color: white
}

h1, h2, h3{
    color: var(--green);
    text-align: center;
}

h2, h3{
    font-weight: normal;
}

h2{
    font-size: 1.5em;
    margin-top: 10px;
    margin-bottom: 15px;
}
h3{

    margin-bottom: 15px;
}

h4{
    margin: 0;
    font-size: 0.75em;
}


.logo{
    display: flex;
    padding: 3px;
}

#info div {
    margin-bottom: 10px;
}

.show{
    display: flex;
}


.content{
    flex: 1;
    position: relative;
    z-index: 1;
    align-items: center;
    display: flex;
    flex-direction: column;
    margin: 0 0;
    gap: 15px;
    margin-bottom: 5%;
    width: 75vw;
}

.paragraph{
    margin: 0px 0px;
}

.content > div{
    display: flex;
    flex-direction: column;
    max-width: 1000px;
    min-width: 0;
}

.err404{
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    justify-items: center;
    align-content: space-around;
    flex-direction: column;
}

pre.codeblock, pre code.codeblock{

}

#showcaseblock,#carouselblock{
    text-align: center;
    display: block;
    flex-wrap: nowrap;
    min-width: 0;
    flex-shrink: 1;
    margin: unset;
    max-width: 75vw;
}

.showcase,.carousel{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    overflow-x:auto;
    gap:15px;
    padding-bottom: 1%;
}

#showcaseContainer,#carouselContainer{
    margin: 0px;
    padding: 1.5%;
    background: #151517;
    border-radius: 10px;
}

.showcase .showcase-item:first-child{
    margin-left: auto;
}

.showcase .showcase-item:last-child{
    margin-right: auto;
}

.showcase-item,.carousel-item{
    display: flex;
    flex-shrink: 0;
    flex-wrap: nowrap;
    flex-direction: column;
    align-content: start;
    justify-content: center;
    text-align: center;
}

.showcase-item > a,.carousel-item > a {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
}

.showcase-item > a img,.carousel-item > img{
    height:15em;
    margin-bottom: 5px;
    background: #1B1B1E;
    border-radius:10px;
}

body *::-webkit-scrollbar{
    height: 10px;
    width: 10px;
}

body *::-webkit-scrollbar-track{
    background: #1B1B1E;
    box-shadow: inset 3px 3px 5px #0F0F0F;
    border-radius: 5px;
}

body *::-webkit-scrollbar-thumb{
    background: black;
    border-radius: 3px;
    box-shadow: inset -2px -3px 3px #2A2A2F;
}

body *::-webkit-scrollbar-thumb:hover {
    cursor: pointer;
}

body *::-webkit-scrollbar-corner{
    display: none
}

.carousel .carousel-item:first-child{
    margin-left: auto;
}

.carousel .carousel-item:last-child{
    margin-right: auto;
}

#info div{
    display: flex;
    flex-direction: column;
}

.bullet-list{
    list-style-type:disc;
}

.fade-in {
    animation: fadeIn 0.5s ease;
}

footer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 5%;
    background: #1B1B1E;
    padding-top: 15px;
    width: 100%;
    color: var(--green);
    padding-bottom: 15px;
}

/* Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInBody {
    0% {
        opacity: 0;
        background-position: 0% 50%;
    }
    100% {
        opacity: 1;
        background-position: 100% 50%;
    }
}

@keyframes slideDown {
    0% {
        transform: translateY(-30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    0% {
        transform: translateX(-40px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Adjustments */
@media screen and (max-width: 1024px) {
    .container {
        max-width: 90%;
    }
}

@media screen and (max-width: 768px) {
    .container {
        width: 95%;
        max-width: none;
    }

    .image-grid {
        grid-template-columns: 1fr 1fr;
    }

    h1 {
        font-size: 2.5rem;
    }

    p {
        font-size: 1rem;
    }

    .auth-buttons {
        flex-direction: column;
        top: 10px;
        right: 10px;
    }
}

@media screen and (max-width: 480px) {
    .image-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 0.9rem;
    }
}

.divider {
    width:60%; border-color: gray; margin-bottom: 5px; margin-top: 20px;
}