@import url('https://fonts.googleapis.com/css2?family=Mystery+Quest&family=Sono:wght@200..800&display=swap');


:root {
    --lite-pink: rgb(255, 219, 225);
    --dark-pink: rgb(202, 112, 127);

}

body {
    background-image: url(/debbiesworld/assets/bg1.jpg);
    background-repeat: repeat;
    font-family: "Sono", monospace;
    margin: 0;
}

#header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "Mystery Quest", system-ui;
    font-weight: 400;
    font-style: normal;
    background-color: rgba(255, 255, 255, 0.3);

    h1 {
        color: pink;
        filter: drop-shadow(1px 2px 2px #762626);
        font-size: 3em;
    }

}

#main-container {
    display: flex;
    flex-direction: row;
    margin: 0 auto;
}

.post,
#post-nav {
    background-color: var(--lite-pink);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 2px 2px #762626;
}

.post:nth-of-type(1),
#post-nav {
    background: linear-gradient(rgb(250, 229, 232), var(--lite-pink) 10%);
}

#post-nav {
    width: 250px;
    height: min-content;
    min-height: 75vh;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    position: sticky;
    top: 50px;
    left: 0;


    #nav-links {
        display: flex;
        flex-direction: column;
    }

    a {
        color: var(--dark-pink);
    }


}

#post-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 auto;


    .post {


        width: 800px;
        max-width: 80%;
        margin: 0 auto;
        font-size: .9em;

        .post-date {
            color: var(--dark-pink);
        }
    }
}

#nav-title,
.post-title {
    font-size: 1.1em;
    font-weight: 200;
    font-weight: 600;
}

#nav-title {
    font-style: italic;
    font-weight: 800;
}

footer {
    text-align: center;

    background: linear-gradient(to bottom, transparent, #0005);
    color: rgb(94, 31, 0);

    span {
        filter: drop-shadow(1px 1px);
    }
}