body {
    /*    height: 1000px;*/
    height: 100vh;
    background: url(../img/black_slate_bg.jpg) no-repeat;
    z-index: 0;
}

.headerbar {
    width: 97%;
    height: 50px;
    /* border: 20px; */
    border-bottom: 1px solid black;
    font-family: Roboto, sans-serif;
    /* background-color: black; */
    position: fixed;
    color: white;
    background-color: black;
    padding: 10px;
    margin-top: -8px;
    z-index: 1;
}

.logo {
    font-size: 48px;
    height: 50px;
    line-height: 50px;
}

.menu-bar {
    color: white;
    display: none;
    position: fixed;
    right: 0;
    top: 0;
    padding-top: 100px;
    padding-right: 10px;
    font-size: 24px;
    /* background-color: black; */
}

.menu-item {
    display: block;
    height: 50px;
    padding-left: 10px;
}

.menu-icon {
    display: block;
    position: fixed;
    right: 0;
    top: 0;
    padding-top: 20px;
    padding-right: 10px;
}

.menu-stack:before {
    content: "\f0c9"
}

.headline_boxes,
.resume {
    position: relative;
    top: 100px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    grid-auto-rows: minmax(200px, auto);
}

.box-1,
.res-summary {
    grid-row: 1;
    grid-column: 1;
}

.box-2 .res-expertise {
    grid-row: 2;
    grid-column: 1;
}

.box-3 {
    grid-row: 3;
    grid-column: 1;
}

.box-4 {
    grid-row: 4;
    grid-column: 1;
}

.resume {
    margin: 20px;
    font-family: Roboto, sans-serif;
    /* color: white; */
}

.section-heading {
    margin-bottom: 30px;
}

.lead {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4;
}

.blinking {
    animation: blinkingText 1.2s infinite;
}

.monospace {
    font-family: 'Courier New', Courier, monospace;
}

.hl:hover {
    font-weight: bold;
}

.boxed {
    border: 1px solid #33FF33;
    display: inline-block;
}

.unboxed {
    border-style: none;
}

.greenscreen {
    color: #33FF33;
    /* background-color: black; */
}

.padded {
    padding: 5px;
}

.clickable {
    cursor: pointer;
}

.teletype {
    font-size: 16px;
    font-weight: normal;
}

.h1-res {
    text-transform: uppercase;
}

@keyframes blinkingText {
    0% {
        color: #33ff33;
    }

    49% {
        color: #33ff33;
    }

    60% {
        color: transparent;
    }

    99% {
        color: transparent;
    }

    100% {
        color: #33ff33;
    }
}

a {
    color: inherit;
    text-decoration: inherit;
}

h3 {
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 3px;
}

@media only screen and (min-width: 1025px) {
    .headerbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo {
        padding-left: 25px;
        height: 50px;
        line-height: 50px;
    }

    .menu-bar {
        display: flex;
        align-items: center;
        justify-self: flex-end;
        padding: 10px;
        /* font-size: 18px; */
    }

    .menu-item {
        /* height: 50px; */
        line-height: 50px;
        /* padding-top: 10px; */
        padding-left: 25px;
        padding-right: 25px;
        text-align: center;
    }

    .menu-item:hover {
        background-color: gray;
    }

    .menu-icon {
        display: none;
    }

    .headline_boxes {
        grid-template-columns: repeat(2, 1fr);
    }

    .resume {
        grid-template-columns: repeat(12, 1fr);
    }

    .box-1 {
        grid-row: 1;
        grid-column: 1;
    }

    .box-2 {
        grid-row: 1;
        grid-column: 2;
    }

    .box-3 {
        grid-row: 2;
        grid-column: 1;
    }

    .box-4 {
        grid-row: 2;
        grid-column: 2;
    }

    .res-summary {
        grid-row: 1;
        grid-column: 1/8;
    }

    .res-expertise {
        grid-row: 1;
        grid-column: 9/13;
    }

    /* .teletype {
        font-size: 12px;
    } */
}