
/* MAIN */

:root {
    --body-font: "Roboto", Roboto, sans-serif;
    --header-font: "Jacquard 12", Roboto, sans-serif;
    --body-color: #333333;
    --container-background: #f2efca;
    cursor: url('/images/horsecursor.png'), auto;
}

body {
    background-image: url('/images/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--body-color);
    font-size: .7em;
    font-family: var(--body-font);
}

    body::after {
        content: '';
        position: fixed;
        inset: 0;
        background: inherit;
        filter: blur(8px) grayscale(70%);
        transform: scale(1.1);
        z-index: -1;
        transition: filter 0.3s ease;
    }

.content {
    width: 60%;
    margin: auto;
}

.flexbox {
    display: flex;
}

.row {
    flex-direction: row;
}

nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    font-family: var(--header-font);
    gap: 1.5rem;
}

    nav h2 {
        text-align: center;
        font-size: 2rem;
    }

.column {
    flex-direction: column;
}

.flexItem {
    flex: 1;
}

aside {
    flex: 0 0 25%;
    max-width: 25%;
    margin: 0;
    gap: 2em;
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.container {
    background: var(--container-background);
    padding: 1em;
    border-radius: 5px;
    overflow: hidden;
}

.containerGlass {
    background: rgb(255, 235, 189, 0.3);
    padding: 1em;
    backdrop-filter: blur(20px);
    border-radius: 60px;
}

.container:hover {
    z-index: 9999;
}

.containerClear {
    background: none;
    padding: 1em;
    border-radius: 5px;
}

}
.sharp {
    border-radius: 0;
}

    aside h1 {
        color: #6d7a57;
        text-align: center;
        font-family: var(--header-font);
    }

    aside p {
        color: var(--body-color);
        font-family: var(--body-font);
        text-align: center;
    }

header {
    text-align: center;
    font-family: var(--header-font);
    font-size: 2em;
    padding: .6rem;
    letter-spacing: .2em;
}

main {
    max-width: 60%;
}

.grid {
    display: grid;
}

main img {
    max-width: 100%;
    border-radius: inherit;
    margin: auto;
    grid-row: 1;
    grid-column: 1;
    border-radius: 50px;
}

main .herotext {
    color: white;
    text-align: center;
    grid-row: 1;
    grid-column: 1;
    z-index: 999;
    margin: auto;
    text-shadow: 0 0 2px black, 0 0 2px black, 0 0 2px black;
    font-size: 1.2rem;
    font-style: italic;
}

main p {
    color: #1e2710;
    text-shadow: 0.5px 0.5px 0.1px #e5deb3;
    text-align: justify;
    font-family: "Roboto Mono";
    font-weight: 500;
}

main .maintext {
    padding: 4em;
}

.webrings {
    text-align: center;
}


/* TOOLTIP */
.tooltip {
    position: relative;
    cursor: pointer;
}

.tooltiptext {
    visibility: hidden;
    left: 200px;
    width: 130px;
    background-color: black;
    color: #ffffff;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    position: absolute;
    z-index: 999;
    font-size: .7rem;
    letter-spacing: .1rem;
    font-family: var(--body-font);
    box-shadow: rgba(0,0,0,.6) 4px 4px 10px;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}

body:has(.lesbianHorses:hover)::after {
    filter: blur(0px) grayscale(70%);
}

.lesbianHorses {
    position: fixed;
    bottom: 0px;
    left: 0;
    width: 30%;
    transition: filter 0.3s ease;
}

    .lesbianHorses:hover {
        filter: blur(8px);
    }

.lesbianflag {
    position: absolute;
    right: 0px;
    top: 60%;
    width: 30%;
    z-index: -1;
}

.horsesKissing {
    display: block;
    width: 90%;
    z-index: 999;
}

aside h1 {
    margin: 0;
}

.microblog {
    height: 200px;
    overflow-y: scroll;
    font-family: var(--body-font);
    color: var(--body-color);
}

.microblog article {
    border-bottom: 1px solid #963c0b;
    padding: 1em;
    max-width: 100%;
    overflow-x: hidden;
}

    .microblog heading {
        text-align: left;
        color: #6d7a57;
        font-family: var(--header-font);
        display: block;
        font-size: 1.5em;
    }

    .microblog p {
        text-align: justify;
        max-width: 100%;
    }

    .microblog date {
        font-style: italic;
        text-align: center;
    }

.linkies {
    width: 100%;
    margin: auto;
    text-align: center;
}

.linkies img {
    display: inline-block;
    margin: auto;
    max-width: 100%;
    
}

.border1 {
    border: 1px solid #43502d;
}

.border2 {
    border-width: 12px;
    border-style: solid;
    border-image: url("https://files.catbox.moe/8anspc.png") 11 fill round;
}

header {
    color: white;
    font-size: 4em;
    
}

.shadow {
    box-shadow: 0px 10px 5px black;
}

.border3 {
    border: 3px ridge #963c0b;
}

hr {
    border: 1px solid #963c0b;
    margin: -1em 10% 2em 10%;
}

nav li {
    transition: transform 0.2s ease, text-shadow 0.2s ease;
    text-shadow: black 0px 0 5px;
}

nav > ul > li:hover {
    transform: scale(1.2);
    text-shadow: white 0px 0 5px;
}

nav a {
    color: white;
    text-decoration: none;
}
nav a:visited {
    color: white;
}

.border4 {
    border: 1.5px dashed #43502d;
}

.borderGlass {
    border: 1px solid #e5deb3;
}

.siteUpdates {
    font-family: var(--body-font);
    display: flex;
    flex-direction: column;
    gap: .5em;
    color: var(--body-color);
    padding: 1em;
}

.update {
    margin-bottom: 0.3rem;
}

.date {
    font-weight: bold;
    margin-right: 0.25rem;
}

.desc {
    display: inline;
}

/* MOBILE */

@media (max-width: 900px) {
    .content {
        width: 100%;
    }

    main .maintext {
        padding: 2em;
    }

    nav {
        display: flex;
        max-width: 60%;
        flex-wrap: wrap;
        margin: 0 auto;
        column-gap: 1.5rem;
        row-gap: 0px;
    }

    aside {
    }

        .microblog article {
            padding: 0;
        }

    .microblog p {
        text-align: left;
    }

    .lesbianHorses {
        width: 50%;
    }
}
