* {
    scroll-behavior: smooth;
}

h1, h2 {
    text-decoration: underline pink 4px solid;
    margin-bottom: 0em;
}

h2 + p {
    margin-top: 0em;
}

#wrapper {
    max-width: 720px;
    margin: 0 auto;
    padding: 2em 1em;
}

header {
    display: flex;
    justify-content: left;
    padding-bottom: 1em;
    column-gap: 1em;
    border-bottom: var(--darkerrose) 2px solid;
}

.kidd {
    max-width: 200px;
}

.kidd img {
    display: block;
    width: 100%;
    margin: 0 auto;
}

section {
    border-image: url(/images/assets/border/lace.png) 8 fill round;
    border-width: 7px;
    border-style:solid;
    border-color: transparent; 
    padding: 0 1em;
    background-color: var(--deadwhite);
    margin: 1em 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.pageLink {
    display: block;
    width: calc(20% - 0.5em);
}

.pageDesc {
    display: block;
    width: calc(80% - 0.5em);
}

article a {
    color: var(--vibrant);
    text-decoration: none;
    font-family: "Source Serif";
    text-transform: uppercase;
    font-weight: 300;
    font-size: 110%;
    &:hover {
        background-color: var(--bgpink);
        color: var(--deadrose);
    }
}

a.notyet, a.notyet:hover {
    cursor: inherit;
    color: var(--lite);
    background-color: var(--deadwhite);
    border-color: var(--lite);
    text-decoration: line-through var(--dustyrose) 1px solid;
}

ul {
    line-height: 180%;
}

@media only screen and (max-width: 850px) { 
    body {
        padding: 0;
        margin: 0;
    }
    
    header {
        width: 100%;
        display: block;
        text-align: center;
    }

    .kidd {
        margin: 0 auto;
    }

    .pageLink {
        width: calc(30% - 0.5em);
    }

    .pageDesc {
        width: calc(70% - 0.5em);
    }
}