#height-tester {
    position: absolute;
    top: 0;
    right: 0;

    width: 100px;
    height: 100%;
    background-color: red;
}

/*responively align the main content side-by-side if on a horizontally wide screen*/
@media (orientation:landscape) {
    #pale-sheet > div {
        display: flex;

        height: 100%;
        width: 100%;

        flex-flow: row wrap;
        gap: 1rem;
    }

    #pale-sheet > div > div {
        flex: 1;
    }
    /*also add the vertical bar*/
    #about-me {
        border-left: solid .15rem #0E0067;

        padding-left: calc(1% - 3px);
    
        display: flex;
        gap: 1rem;
    }

    #about-me > div {
        flex: 1;
    }

    #left-pane {
        overflow: hidden;
        /*overflow hidden prevents the 'featured article not found'
        placeholder from extending outside the element, it does this in some
        cases because it's rotated*/
    }
    #no-featured-article-placeholder {
        position: absolute;
        inset: 0;
        margin: auto;

        font-size: 3rem;
    }
    #no-featured-article-placeholder {
        font-size: 5vw;
    }
}
@media (orientation:portrait) {
    /*nothing needed*/

    #featured {
        position: relative;
        margin-bottom: 1rem;
    }

    #no-featured-article-placeholder {
        position: absolute;
        inset: 0;
        margin: auto;
    }

    #no-featured-article-placeholder {
        font-size: 5vh;
    }

    /*active article*/
    #featured {
        padding-bottom: 1rem;
        border-bottom: .15rem solid#0E0067;
    }
    #featured-article-title {
        margin: 1.5rem;
    }
}
#featured {
    text-align: center;
}
#featured > h2 {
    margin: 0;
    font-size: 3rem;
}

#featured p {
    margin-left: 1rem;
    margin-right: 1rem;
}


/*active article*/
#featured > div {
    display: flex;
    flex-direction: column;
    align-items: center;

    height: 100%;
    width: 100%;

    margin-top: 10%;
}
#featured a {
    display: block;

    width: 80%;
    
    text-decoration: none;
}
#featured-article-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}
#featured-article-title > p {
    font-size: 3rem;
    line-height: 1;
}
#featured img {
    object-fit: contain;
    width: 75%;

    margin-bottom: 1rem;
}

#no-featured-article-placeholder {
    position: absolute;
    inset: 0;
    margin: auto;
    
    text-align: center;
    height: fit-content;

    transform: rotate(-35deg);
}

#background-info {
    position: relative;
    width: 100%;
    
    padding-bottom: 1rem;

    text-align: center;
}
#background-info > p {
    text-align: justify;
}

#about-me {
    text-align: justify;
}

#email {
    padding-top: 1rem;
    text-align: center;
    font-weight: bold;
}

#headshot-flex-container {
    display: flex;
    width: 100%;
}
#headshot {
    display: inline;

    width: 100%;
}
#headshot-pseudoborder-left {
    width: 0.15rem;
    margin-top: 83.8%; /*setting the height won't work, but this inexplicably will*/

    background-color: #0E0067;
}

#headshot-pseudoborder-bottom {
    height: 0.15rem;
    width: 60%;

    background-color: #0E0067;
    
    margin-bottom: 1rem;
}

#site-technical > h2 {
    text-align: center;
}

#site-technical > p {
    text-align: justify;
}