
body {
    margin: 0;
    padding: 0;
    font-family: "Raleway", sans-serif;
    font-size: 1.2rem;
    background-color:whitesmoke;
}

#tldr {
    max-width: 90%;
    margin: 2rem auto;
    padding: 0.5rem;
    border: solid mediumslateblue 5px;
    border-radius: 10px;
    background-color: lavender;
}

#tldr h2{
    margin: 0;
    font-style: italic;
}

/* #tldr a{
    color:slateblue;
} */

h1, h2, h3, h4, h5, h6{
    font-family: "IBM Plex Mono", sans-serif;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    padding: 0;
    margin: 1.5rem 0 0 0;
}

p{
    margin: 0.75rem 0;
}

h1 {
    font-size: 2.5rem; 
}

h2 {
    font-size: 2rem;
}
h3 {
    font-size: 1.75rem;
    font-weight: 600;
}
h4{
    font-size: 1.5rem;
    font-weight: 600;
    font-style: italic;
}

dl{
    margin-left: 3rem;
}

dt {
    font-family: "IBM Plex Mono";
    font-weight: 600;
    font-style: italic;
}

main{
    width: 80vw;
    margin: 0 auto;
}
pre {
    max-width: 100%;
    padding: 1rem;
    margin: 0;
    font-family: "IBM Plex Mono", monospace;
  font-weight: 300;
    background-color: darkslateblue;
    border-radius: 10px;
    color: whitesmoke;
    white-space: pre-wrap;       /* css-3 */
    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    word-wrap: break-word;       /* Internet Explorer 5.5+ */
}

code {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    color: mediumblue;
    background-color: palegreen;
    padding: 0.1rem;
    border-radius: 10px;
}

.dirstruct{
    /* padding: 1rem 0; */
    max-width: 50%;
    color: slateblue;
    border-radius: 10px;
    background-color: lavender ;
    margin: 0;
   
}

#blankgif {
    border: 10px solid red;
}

a {
    color:slateblue;
    font-weight: 800;
    text-decoration: underline;
}
a:hover{
    text-decoration:solid;
}

footer {
    padding: 0.5rem;
    margin-top: 3rem;
    background-color: darkslateblue;
    color:aliceblue;
}

header {
    padding: 0.5rem;
    margin-bottom: 3rem;
    background-color: darkslateblue;
    color:aliceblue;
    font-size: 1.2rem;
}

header a, footer a {
    color: palegreen;
    text-decoration: none;
}

header a:hover, footer a:hover {
    text-decoration: underline;
}

nav li {
    display: inline-block;
    list-style: none;
    margin: 0;
    padding: 0.5rem;
}

nav ul {
    margin: 0;
    padding: 0;
    display: inline-block;
}


@media screen and (min-width: 800px ) {
    main {
        max-width: 75vw;
    }

    /* pre {
        max-width: 95%;
    }

    .dirstruct {
        max-width: 50%;
    } */
}