:root {
    --light-slate: #c3c3c3;
    --medium-slate: #c9c9c9;
    --off-white: #e9e9e9;
    --charcoal: #424242;
    --orange: #db5800;
    --salmon: #edbb99;
    --green: #0f0;
    --blue: #006899;
    --slate: #34495e;
    --grey: #b6b6b6;

    --font-01: Maven Pro;
    --font-04: Lobster;

    --font-11: Archivo;
    --font-12: Open Sans;
}

blockquote {
    display:block;
    background: var(--medium-slate);
    padding: 5px 15px 5px 15px;
    margin: 0 0 20px;
    position: relative;
    
    /*Font*/
    font-family: var(--font12);
    font-size: 16px;
    line-height: 1.2;
    color: var(--charcoal);
    text-align: justify;
    
    /*Borders - (Optional)*/
    border-left: 10px solid var(--orange);
    border-right: 3px solid var(--orange);
}

blockquote a {
    text-decoration: none;
    background: var(--medium-slate);
    cursor: pointer;
    padding: 0 3px;
    color: var(--orange);
}

blockquote a:hover{
    color: #666;
}

blockquote em {
    font-style: italic;
}

blockquote.code {
    display:block;
    background: black;
    padding: 10px 15px 10px 15px;
    position: relative;
    
    /*Font*/
    font-family: var(--font12);
    font-size: 14px;
    line-height: 1.3;
    color: var(--green);
    text-align: justify;
    
    /*Borders - (Optional)*/
    border: 1px solid var(--green);
}

body {
    display: grid;
    grid-template-columns: 80%;
    gap: 0;

    font-family: var(--font-12);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.75rem;
    color:var(--charcoal);

    background-color:var(--charcoal);
    padding-top: 35px;
    padding-left: 25px;
}

code {
    padding: 2px 3px 2px 3px;
    background: var(--charcoal);
    border-radius: 5px;
    font-weight: 500;
    color: var(--green);
    font-style: normal;
}

em {
    color: var(--orange);
    font-weight: 600;
    font-style: normal;
}

figcaption {
    font-size: 11px;
    font-style: italic;
}

h1 {
    font-family: var(--font-01);
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    color:var(--charcoal);
    filter: drop-shadow(3px 3px 2px var(--grey));
    margin: 30px 0px 20px 0px;
}

h2 {
    font-family: var(--font-01);
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    color:var(--charcoal);
    filter: drop-shadow(3px 3px 2px var(--grey));
    padding: 0;
    margin: 20px 0px 10px 0px;
}

h3 {
    font-family: var(--font-01);
    font-style: italic;
    font-weight: 700;
    font-size: 18px;
    color:var(--charcoal);
    filter: drop-shadow(3px 3px 2px var(--grey));
    padding: 0;
    margin: 20px 0px 10px 0px;
}

hr {
    border-top: 2px dotted var(--orange);
}

li.nobull {
    list-style-type: none;
    text-indent: -2em;
}

p {
    margin-block-start: 0.75em;
    margin-block-end: 0.75em;
}

pre {
    background: var(--charcoal);
    padding: 10px 15px 10px 15px;
    border-radius: 8px;
    
    /*Font*/
    font-family: var(--font12);
    line-height: 1.5em;
    color: var(--green);
    text-align: justify;
    
    /*Borders - (Optional)*/
    border: 2px solid var(--orange);
}

.blogdate {
    margin-top: -25px;
    font-weight: 500;
    font-size: 14px;
    font-style: italic;
}

.blog-grid {
    display: grid;
    grid-template-columns: 100%;
    gap: 1em;
}

.blog-item {
    display: grid;
    grid-template-columns: auto 90%;
    gap: 1em;
}

.container {
    display: grid;
    grid-template-columns: 55px auto;
    gap: 0;
    max-width: 1275px;
}

.container-inner {
    display: grid;
    grid-template-columns: auto;
    gap: 0;
}

.container-inner a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 600;
}

.container-inner a:hover {
    color: var(--orange);
    text-decoration: underline 2px var(--orange);
    text-underline-offset: 2px;
}

.highlight {
    background-color: var(--blue);
    padding: 2px 3px 2px 3px;
    border-radius: 3px;
    color: var(--off-white);
    font-weight: 500;
}

.footer {
    font-family: Open Sans, Arial;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    color: var(--light-slate);
    padding-left: 15px;
    padding-bottom: 25px;
    line-height: 1rem;
}

.footer a {
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
}

.footer a:hover {
    text-decoration: underline 2px var(--green);
    text-underline-offset: 1px;
}

.footer svg {
    color: var(--orange);
}

.intro {
    float: left;
    /*box-shadow: 3px 3px 3px #848484;*/
    padding: 15px 20px 5px 0px;
    filter: drop-shadow(3px 3px 3px black);
}

.logo {
    font-family: var(--font-04);
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    padding: 0px 0px 4px 5px;
    color: darkorange;
    filter: drop-shadow(3px 3px 3px black);
}

.logo a {
    text-decoration: none;
    color: darkorange;
}

.logo a:hover {
    text-decoration: none;
    color: darkorange;
}

.menu {
    background-color: var(--orange);
    color: var(--off-white);
    padding: 10px 10px 10px 20px;
    border-radius: 5px 5px 5px 5px;
    font-weight: 800;
    background-image: url("../images/rvheader.png");
    background-repeat: no-repeat;
    background-size: 100%;
}

.menu a {
    text-decoration: none;
    color: var(--off-white);
    display: block;
    padding: 2px 10px 2px 10px;
    margin: 0px 5px 0px 0px;
}

.menu a:hover {
    /*text-decoration: underline 2px solid;
    text-underline-offset: 3px;*/
    color: var(--off-white);
    background-color: var(--charcoal);
    border-radius: 5px;
    text-decoration: none;
}

.menu ul {
    padding: 0px;
    margin: 0px;
    list-style-type: none;
    overflow: hidden;
}

.menu li {
    float: left;
}

.panel1 {
    background-color: var(--medium-slate);
    padding-top: 20px;
    border-radius: 5px 0px 0px 25px;
    margin-bottom: 10px;
    text-align: center;
    line-height: 3.25rem;
}

.panel1 a {
    color: var(--charcoal);
}

.panel1 a:hover {
    color: var(--orange);
}

.panel1 img {
    border-radius: 100%;
    width: 45px;
    height: 45px;
    border: 2px solid var(--charcoal);
}

.panel1 svg {
    width: 30px;
    height: 30px;
}

.panel2 {
    background-color: var(--off-white);
    padding: 20px 20px 20px 20px;
    border-radius: 0px 5px 5px 0px;
    margin-bottom: 10px;
}

.photo {
    border: 1px solid var(--charcoal);
    border-radius: 2px;
    width: auto;
    height: auto;
}

.shoutout {
    color: black;
    font-weight: 600;
}

.signature {
    text-align: right;
    padding-right: 30px;
}

@media only screen and (max-width: 700px) {
    body {
        display: grid;
        grid-template-columns: 100%;
        gap: 0;

        font-family: var(--font-12);
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 1.5rem;
        color:var(--charcoal);

        background-color:var(--charcoal);
        padding-top: 25px;
        padding-left: 15px;
        padding-right: 15px;
    }

    h1 {
        font-family: var(--font-11);
        font-style: normal;
        font-weight: 500;
        font-size: 18px;
        color:var(--charcoal);
        filter: drop-shadow(3px 3px 2px var(--charcoal));
        margin: 1.5rem 0 0.5rem 0;
    }

    h2 {
        font-family: var(--font-11);
        font-style: normal;
        font-weight: 500;
        font-size: 15px;
        color:var(--charcoal);
        padding: 0;
        margin: 0;
    }

    p {
        margin-block-start: 0.5em;
        margin-block-end: 0.5em;
    }

    .blog-grid {
        display: grid;
        grid-template-columns: 100%;
        gap: 1em;
    }

    .container {
        display: grid;
        grid-template-columns: 35px auto;
        gap: 0;
    }

    .intro-sm {
        width: 120px;
        height: auto;
    }
    
    .footer {
        font-family: Open Sans, Arial;
        font-style: normal;
        font-weight: 400;
        font-size: 12px;
        color: var(--light-slate);
        padding-left: 15px;
        padding-bottom: 25px;
        line-height: 1rem;
    }
    
    .footer a {
        color: var(--green);
        text-decoration: none;
        font-weight: 600;
    }
    
    .footer a:hover {
        text-decoration: underline 2px var(--green);
        text-underline-offset: 1px;
    }
    
    .footer svg {
        color: var(--orange);
    }
    
    .logo {
        font-family: Lobster, Arial;
        font-style: normal;
        font-weight: 400;
        font-size: 40px;
        padding: 0px 0px 4px 5px;
        color: darkorange;
        filter: drop-shadow(3px 3px 3px black);
    }
    
    .menu {
        background-color: var(--orange);
        color: var(--off-white);
        padding: 5px 5px 5px 10px;
        border-radius: 5px 5px 5px 5px;
        font-weight: 800;
        font-size: 12px;
    }
    
    .menu a {
        text-decoration: none;
        color: var(--off-white);
        display: block;
        padding: 2px 3px 2px 3px;
        margin: 0px 5px 0px 0px;
    }

    .panel1 {
        background-color: var(--medium-slate);
        padding-top: 20px;
        border-radius: 5px 0px 0px 25px;
        margin-bottom: 10px;
        text-align: center;
        line-height: 2rem;
    }
    
    .panel1 a {
        color: var(--charcoal);
    }
    
    .panel1 a:hover {
        color: var(--orange);
    }
    
    .panel1 img {
        border-radius: 100%;
        width: 28px;
        height: 28px;
        border: 2px solid var(--charcoal);
    }
    
    .panel1 svg {
        width: 20px;
        height: 20px;
    }
}