/* styllleeee */

body{
    margin: 0;
}

main {
    height: 66.666vh;
    margin-top: 16.51515151vh;
    width: calc(100% - 32vw);

    display: flex;
    flex-direction: row;
    justify-content: center;

    margin-left: 16vw;
    margin-right: 16vw;
}

nav {
    width: 300px;
    flex-shrink: 0;
    margin-right: 24px;
}

article{
    overflow-y: scroll;
    flex-shrink: 1;
}

.push{
    width: 125px;
    flex-shrink: 0;
}

nav > div{
    text-align: right;
    color: #444;
}

nav > .aaronzbest{
    font-family: 'Times New Roman', serif;
    font-size: 60px;
    line-height: 72px;
    letter-spacing: -0.3rem;
    text-align: right;
    color: black;
    font-weight: 500;
}

.description{
    font-size: 24px;
    font-weight: normal;
    margin-left: 40px;
    margin-bottom: 24px;
}

nav > #nav-links {
    font-size: 18px;
    font-family: monospace;
}

#nav-links a {
    color: #444;
}

section{
    width: 100%;
    height: 100%;
    display: none;
}

section.section-active{
    display: block;
}

article::-webkit-scrollbar {
    width: 8px;
    margin-left: 4px;
  }
  
article::-webkit-scrollbar-track {
    background: white;
}

article::-webkit-scrollbar-thumb {
    background-color: #e0e0e0;
    outline: 1px solid #e0e0e0;
    border-radius: 4px;
    margin:2px;
}

.header{
    font-family: monospace;
    color: #444;
    font-weight: 700;
    margin-left: 18px;
    margin-bottom: 40px;
    margin-top: 20px;
    font-size: 28px;
}

.item{
    font-size: 16px;
    line-height: 20px;
    font-family: monospace;
    color: #444;
    margin-bottom: 32px;
    margin-left: 18px;

    text-indent: -40px;
    position: relative;
    left: 40px;
    width: calc(100% - 68px);
}

.item a{
    color: #444;
    text-decoration: underline;
}

.item a:hover{
    background: #e5e5e5;
}


.item a.a-feature:hover{
    /*background: #444;
    color: white;*/
    text-decoration: underline;
}

.item a.a-feature{
    background: #EFFD5F;
    color: black;
    text-decoration: none;
}

.feature-no-link{
    background: #EFFD5F;
    color: black;
}

.feature-no-link:hover{
    cursor: help;
    color: #888;
}

.feature-no-link:hover::after{
    content: 'sorry, no link yet \2639';
    position: absolute;
    top: -20px;
    font-size: 14px;
    width: 200px;
    left: 62px;
    color: darkcyan;
}

.coverage::before{
    /* content: '\2192  \2192'; */
    content: 'press:';
    margin-right: 8px;
    font-weight: bold;
    background: #e5e5e5;
}

div::-moz-selection { background: #B0E0E6}
div::selection { background: #B0E0E6; }

/* *** RESIZING *** */
@media (max-width: 1200px) {
    main {
        margin-left: 32px;
        margin-right: 32px;
        width: auto;
    }

}

@media (max-width: 800px){
    main{
        flex-direction: column;
        align-items: center;
        margin-left: 8px;
        margin-right: 8px;
    }

    nav{
        margin-bottom: 40px;
        width: auto;
    }

    nav > div,
    .aaronzbest,
    .description{
        text-align: left;
        margin-left: 0;
    }
} 

@media (max-width: 450px){
    main{
        height: 100%;
        margin-top: 32px;
    }
}

/*.coverage{
    background: #888;
    color: black;
}*/

/*.coverage a{
    color: black;
    text-decoration: none;
}*/

/* specific content */
#article-home{
    /*background-image: url(profile.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;*/
}

