body {
    background-color: #fffbec;
    margin: 0;
}

.page {
    max-width: 70em;
    margin: auto;
}

.container {
    position: relative;
    padding: 1em;
}

.linkroll {
    display: flex;
    gap: .8em;
    justify-content: center;
    align-content: center;
}

.linkroll a:any-link {
    color: black;
}

[data-text] {
    text-decoration: underline dashed black 1px;
    cursor: pointer;
}
[data-text]:hover::after {
    display: block;
    position: absolute;
    content: attr(data-text);
    border: 1px solid black;
    background: white;
    padding: .25em;
    box-shadow: 1px 1px black;
}

#flower {
    position: absolute;
    height: 6em;
    top: .4em;
    right: 1em;
    border: none;
}

/* BLOG */
.blogpost {
    position: absolute;
    background-color: white;
    background-image: url(/assets/paper.jpg);
    background-size:cover;
    background-repeat: no-repeat;
    padding: .5em;
    width: 11em;
    height: 14em;
}

.blogpost h3 {
    margin-top: .25em;
}

.blogpost a{
    float:right;
}

.blogpost .peg {
    height: 30px;
    position: absolute;
    top: -18px
}

.blogpost img:last-of-type {
    right: 1em;
}

@media (min-width: 43em) {
    #blog {
        height: calc(14em + (100vw / 980 * 100));
        padding: 1em 0;
    }

    #blogroll {
        min-height: 13.5em;
    }

    #randomthing {
        position: absolute;
        top:2em;
    }
}

@media (max-width: 43em) {
    #blogroll {
        position: relative;
        display: flex;
        flex-direction: row;
        gap: .5em;
        flex-wrap: wrap;
        margin-top: 3em;
        flex-basis: 11em;
    }
    .blogpost {
        position: static !important;
        transform: none !important;
        flex: 1 1 auto;
    }
    .blogpost .peg, #string {
        display: none;
    }
}

/* blog stuff */
@media (max-width: 30em) {
    #cut {
        display: none;
    } 
}