html {
    filter: invert(0.9);
}

body {
    background: #f7f7f7;
    color: #1e1e1e;
    margin: 0;
    min-height: 100vh;
    font-family: 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}

h1 {
    line-height: 1;
    color:#1e1e1e;
    letter-spacing: -0.05em;
    font-family: 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

.home_h1::after {
  content: "";
  width: 5px;
  height: 25px;
  background: #1e1e1e;
  display: inline-block;
  animation: cursor-blink 1s steps(2) infinite;
}

a {
    color: #000;
    }
a:visited {
    color: #000;
}
.logo {
    text-decoration: none;
    color: rgb(35, 35, 35);
    font-size: 1.3vw;
    font-weight: 510;
    scale: 1 1;
    display: flex;
    justify-content: center;
}

.split-left,
.split-right {
    height: 100vh;
    overflow-y: auto;
}

.split-left {
    width: 15%;
    background: transparent;
    position: relative;
    padding: 10px 20px 20px 20px;
    box-sizing: border-box;
}

.split-right {
    width: 80%;
    height: calc(100vh - 10px);
    width: calc(100vw - 10px);
    margin-top: 10px;
    margin-right: 10px;
    padding: 40px 40px 20px 40px;
    box-sizing: border-box;
    background: #ffffff;
    border-radius: 15px 15px 0px 0px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.entry-list, .affiliate_links, .queue {
    display: grid;
    margin-top: 20px;
    margin-bottom: 5vh;
    padding: 0;
    font-size: 1.6rem;
    position: relative;
    width: 100%;
    list-style-type: none;
}

.entry-list a, .affiliate_links a, .queue a {
    text-decoration: none;
}

.entry-list li:hover, .queue li:hover, .affiliate_links li:hover {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
    cursor: pointer;
}

.entry-title, .affiliate_title, .queue_title {
    align-items: center;
    align-self: stretch;
    display: flex;
    padding: .6rem;
    width: 100%;
    color: #000;
    font-size: 1.2vw;
    font-weight: 400;
    letter-spacing: -2%;
}


#markdownContent {
    max-width: 600px;
    margin: 5% auto;
    font-size: 1.3vw;
    line-height: 1.5;
    font-family: Atkinson Hyperlegible Mono;
}

img {
    display: block;
    max-width: 100%;
    max-height: 80vh;
    height: auto;
    margin: 2rem 0 1rem 0;
}

.contact {
    position: absolute;
    background-color: #ffffff;
    font-weight: 510;
    font-size: 0.75vw;
    color: #585858;
    border-radius: 15px;
    padding: 15px;
    bottom: 30px;
}

.img_description {
    font-size: 1vw;
    text-align: center;
    color:#585858;
    margin-bottom: 2rem;
}

@media (max-width: 900px) {
    body {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        font-size: 16px;
    }

    .split-left,
    .split-right {
        width: 100%;
        height: auto;
        min-height: unset;
        margin: 0;
        padding: 0;
        box-shadow: none;
        border-radius: 0;
    }

    .split-left {
        position: static;
        background: #fff;
        padding: 10px 10px 0 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.03);
        z-index: 2;
        width: 100vw;
    }

    .split-right {
        padding: 20px 10px 10px 10px;
        margin-top: 0;
        margin-right: 0;
        background: #fff;
        border-radius: 0 0 15px 15px;
        width: 100vw;
        min-height: 35vh;
    }

    .logo {
        font-size: 6vw;
    }

    .entry-title, .affiliate_title, .queue_title {
        font-size: 4.5vw;
        padding: 0rem;
    }

    .entry-list, .affiliate_links, .queue {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-top: 20px;
        list-style: none;
        padding: 0;
    }

    .entry-list li {
        font-size: 4vw;
        width: 100%;
        height: 100%;
    }

    #markdownContent {
        font-size: 4vw;
        margin: 20px auto;
        max-width: 98vw;
    }

    .img_description {
    font-size: 3vw;
}

    .contact {
        display: none;
    }
}

@keyframes cursor-blink {
  0% {
    opacity: 0;
  }
}
