*, *:before, *:after { box-sizing: border-box; }
@font-face {
    font-family: 'Chance Brush';
    src: url('../fonts/ChanceBrush.woff2') format('woff2'),
        url('../fonts/ChanceBrush.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Chance Brush', 'Times New Roman', Times, serif;
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 18px;
    line-height: 22px;
    text-align: left;
    color: #000;
    background-color: magenta;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; 
    -webkit-text-size-adjust: none;
}
main {
    display: grid;
    grid-template-columns: 3fr 1fr;
}
#content {
    padding: 15px;
}
p {
    word-break: break-word;
}
a {
    color: #000;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    text-decoration-color: rgba(0, 0, 0, 0.514);
    text-decoration-skip-ink: all;
    text-decoration-style: dotted;
}
.no-tech-salary {
    font-family: Arial, Helvetica, sans-serif;
    display: inline-block;
    font-size: 12px;
    line-height: 14px;
    background-color: #e5ff00;
    color: #000;
    padding: 5px;
    border-radius: 4px;
    width: 250px;
    text-align: center;
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.5));
}
#support-my-work {
    font-family: Arial, Helvetica, sans-serif;
    display: inline-block;
    font-size: 12px;
    line-height: 14px;
    color: #fff;
    background-color: #000000;
    text-decoration: underline;
    padding: 10px;
}
#looking-for-work {
    font-family: Arial, Helvetica, sans-serif;
    display: inline-block;
    font-size: 14px;
    line-height: 14px;
    color: #000;
    background-color: #fff;
    padding: 10px;
}
#looking-for-work a {
  background-color: rgb(206, 255, 206);
  text-decoration: none;
}

/* Shelf sidebar */
aside#shelf {
    font-family: Arial, Helvetica, sans-serif;
    position: sticky;
    min-width: 300px;
    top: 0px;
    font-size: 14px;
    line-height: 16px;
    width: 100%;
    background: linear-gradient(to bottom, #000000, #000000);
    background-color: #000000 !important;
    color: #fff;
    padding: 10px;
    height: calc(100dvh - 0px);
    overflow-y: auto;
    border-left: 1px solid yellow;
    /* -webkit-font-smoothing: initial;
    -moz-osx-font-smoothing: initial; 
    -webkit-text-size-adjust: initial; */
}
aside#shelf .shelf-item p:first-child {
    margin-top: 0;
}
aside#shelf .shelf-item p:last-child {
    margin-bottom: 0;
}
#shelf a { color: #fff; }
#shelf .shelf-item {
    margin-bottom: 20px;
    border-bottom: 1px dashed magenta;
    padding-bottom: 10px;
}
#shelf img, #shelf video { width: 100%; height: auto; display: block; }
#shelf time {
    display: block;
    font-family: "Chance Brush", 'Times New Roman', Times, serif;
    font-size: 12px;
    line-height: 14px;
    color: yellow;
    margin-top: 10px;
    }

@media (max-width: 768px) {

}