body {
    margin: 0;
    padding: 0;
    font-family: "Raleway", sans-serif;
}

p, li {
    font-size: 1.2rem;
}

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: 0.5rem 0;
}

h1 {
    font-size: 2.5rem; 
}

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

main{
    width: 80vw;
    margin: 0 auto;
}
pre {
    max-width: 100%;
    padding: 1rem;
    font-family: "IBM Plex Mono", monospace;
  font-weight: 300;
    background-color: blue;
    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: blue;
}

.dirstruct{
    padding: 1rem 0;
    max-width: 75%;
    color: black;
    background-color:lightsteelblue;
    border-radius: 25px;
}

#blankgif {
    border: 10px solid red;
}

a {
    color:red;
    font-weight: 800;
    text-decoration: none;
}
a:hover{
    text-decoration: underline;
}

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

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

    pre {
        max-width: 95%;
    }

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