html {
    height: 100%;
}

body {
    /*font-family: 'Arial', sans-serif;*/
    font-family: monospace;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-size: 13px;
    background: repeating-linear-gradient(
        45deg,
        #c0c0c0 0px,
        #c0c0c0 5px,
        #d0d0d0 5px,
        #d0d0d0 10px
    );
    background-color: #e0e0e0;
    color: #000;
    margin: 20px;
    padding: 0;
    /*animation: scrollBackground 10s linear infinite;*/
}

/*@keyframes scrollBackground {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 100px 0;
    }
}*/

main {
    max-width: 800px;
    background-color: #fff;
    border: 2px solid #000;
    padding: 20px;
    margin: 40px auto;
    box-shadow: -10px 10px 0 rgba(136, 136, 136, 0.5);
    position: relative;
}

.menu-bar {
    background-color: #fafafa;
    border-bottom: 2px solid #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
    margin: -20px -20px 20px -20px;
}

.menu-bar .menu-title {
    font-weight: normal;
}

.menu-icons {
    display: flex;
    gap: 10px;
}

.menu-icons a {
    display: inline-block;
    width: 16px;
    height: 16px;
    text-decoration: none;
}

.menu-icons svg {
    width: 100%;
    height: 100%;
    fill: #000;
    transition: fill 0.2s ease;
}

.menu-icons svg:hover {
    fill: #fff;
}

.rogue {
    width: 20px;
    vertical-align: text-bottom;
}

.job-title, .company, .featured-title {
    font-size: 20px;
    font-weight: bold;
}

.company, .location, .tenure {
    padding-top: 3px;
}

.duties {
    padding-top: 15px;
    font-size: 13px;
    line-height: 1.4;
}

.duties ul {
    padding: 0 20px;
}

.duties li, .featured-title {
    margin-bottom: 10px;
}

.featured-title {
    border-top: 1px solid #000;
    padding-top: 15px;
    margin-top: 25px;
}

.featured-subtitle {
    font-size: 9px;
    padding: 0 0 20px 0;
    color: #8f888f;
    font-style: italic;
}

h2 {
    border-bottom: 1px solid #000;
    padding-bottom: 5px;
    margin-bottom: 10px;
    font-weight: bold;
    font-style: normal;
    font-size: 16px;
}

h2 img {
    width: 20px;
    padding-right: 5px;
}

/* Lists and Links */
.homepage .section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.homepage .section li {
    margin-bottom: 20px;
}

.homepage .section li p {
    font-size: 11px;
    color: #8f888f;
}

a {
    color: #000;
    text-decoration: none;
    border: 1px solid #8f888f;
    padding: 2px 4px;
    transition: background-color 0.2s, color 0.2s;
}

a.simple {
    text-decoration: underline;
    color: inherit;
    border: none;
    padding: 0;
}

a:hover {
    background-color: #404040;
    color: #fff;
    cursor: pointer;
}

a.simple:hover {
    color: #339a9a;
    background: none;
}

footer {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: #555;
}

.featured-work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.featured-work-grid video {
    cursor: pointer;
    width: 100%;
}

.featured-caption {
    padding: 5px 0 15px 0;
    line-height: 1.4;
}

.featured-caption, .location, .tenure {
    color: #8f888f;
    font-size: 11px;
}

@media (max-width: 600px) {
    .featured-work-grid {
        grid-template-columns: 100%;
    }
}