
.storytxt {
    margin-left: 5%;
    font-size: 1.15em;
    letter-spacing: .3px;
    font-weight: 500;
}

.articpreset {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    padding: 1em;
    /*border-bottom: 1px solid grey ; */

}

.artictop::before {
    width: 100%;
    border-bottom: 2px solid #888;
    display: block;
    content: "";
    margin:  auto;
 }

.innerartic {
    max-width: 50rem;
    margin-left: 0;
}

.blogarticle.wide {
    width: 100%;
}

.blogarticle.tall{

    width: unset;
    height: 55vh;
    display: inline-flex;
    max-width: 100%;
}

.storypart {
    /*background-color: blue;   */
    background: hsl(196,100%,50%);
    flex: 0.3;
    border-radius: 5px;
    transition: all 0.7s ease-in;
}

.storypart:hover {
    background: hsl(196,100%,90%);
       color: black;
       transition: all 0.5s ease-out;

}

.storypart.current {
    background: hsl(196,100%,90%);
    
    flex: 0.3;
    border-radius: 5px;
    
}

.storypart.current > a {
    color: black;
    cursor: unset;
}

.storypart:hover > a {
    color: black;
    transition: all 0.5s ease-out;
}
.storypart > a {
    display: block;
    cursor: pointer;
    padding: 0.5em 1em;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    line-height: 150%;
    font-size: 1.15em;
    transition: all 0.7s ease-in;
}

button[type ="submit"] {
    width: 95%;
    margin: auto;
    margin-top: 1.5em;
    background: hsl(196,100%,50%);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.1em;
    border-radius: 10px;
    line-height: 2em;
    color: white;
    transition: all 0.7s ease-in;
   }
   
   button[type ="submit"]:hover {
       background: hsl(196,100%,90%);
       color: black;
       transition: all 0.5s ease-out;
   
   }


.codeblock {
    
    max-height: 50%;
    max-width: 100%;
    border: 2px solid lightblue;
    
}

ul.listinartic {
    line-height: 1.15em;
    font-size: 1.25em;
}

.highlightitem > a {
    /*text-decoration:none; */
    color: black;
    cursor: pointer;
}

.highlightitem .ulsub  {
    font-size: unset;
}

pre{
    font-size: larger;
}

@media (max-width: 1000px) {

.articpreset {
    flex-direction: column;
    gap: 1.5em;
}

.blogarticle.tall {
    height: unset;
}

}

@media screen and (not (pointer: fine))  {
    .innerartic {
        max-width: 95%;
    }

    .storytxt {
        font-size: 1.9em;
    }
    .storypart > a {
        font-size: 2em;
    }

    
}
