@font-face {
    font-family: 'ABC Diatype Mono Bold';
    src: url('assets/type/ABCDiatypeMono-Bold.woff2') format('woff2'),
        url('assets/type/ABCDiatypeMono-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ABC Diatype Mono Regular';
    src: url('assets/type/ABCDiatypeMono-Regular.woff2') format('woff2'),
        url('assets/type/ABCDiatypeMono-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ABC Diatype Mono Light';
    src: url('assets/type/ABCDiatypeMono-Light.woff2') format('woff2'),
        url('assets/type/ABCDiatypeMono-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ABC Diatype Mono ThinItalic';
    src: url('assets/type/ABCDiatypeMono-ThinItalic.woff2') format('woff2'),
        url('assets/type/ABCDiatypeMono-ThinItalic.woff') format('woff');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'ABC Diatype Mono Thin';
    src: url('assets/type/ABCDiatypeMono-Thin.woff2') format('woff2'),
        url('assets/type/ABCDiatypeMono-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
body {
  margin: 0px;
  padding: 0px;
  display: flex;
  flex-direction: row;
  font-family: 'ABC Diatype Mono Light';
  font-size: 15px;
  color: black;
  text-align: justify;
  overflow-y: hidden;
}
#sidebar {
  width: 30%;
  height: 100vh;
  /* background-color: grey; */
  padding: 1.5em;
  overflow-y: scroll;
}
#portfolio {
  /* background-color: blue; */
  width: 70%;
  padding: 1.5em;
  height: 100vh;
  overflow-y: scroll;
}
#about{
  width: 70%;
  height: 100vh;
  padding: 1.5em;
  display: none;

  overflow-y: scroll;

}
#name {
  margin-bottom: 1.5em;
  border-bottom: 2px solid black;
  line-height: 1.5;
}
#audioPlayer {
            background: #fff;
            /*border-radius: 8px;*/
            /*padding: 20px;*/
            margin-bottom: 30px;
            /*box-shadow: 0 2px 8px rgba(0,0,0,0.1);*/
        }

        .player-title {
            font-size: 14px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #333;
        }

        .player-controls {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .play-button {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #000;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 16px;
            transition: opacity 0.2s;
        }

        .play-button:hover {
            opacity: 0.8;
        }

        .time-display {
            font-size: 12px;
            color: #666;
            min-width: 45px;
        }

        .progress-container {
            flex: 1;
            height: 4px;
            background: #ddd;
            border-radius: 2px;
            cursor: pointer;
            position: relative;
        }

        .progress-bar {
            height: 100%;
            background: #000;
            border-radius: 2px;
            width: 0%;
            transition: width 0.1s;
        }

        .volume-container {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .volume-slider {
            width: 60px;
            height: 4px;
            -webkit-appearance: none;
            appearance: none;
            background: #ddd;
            border-radius: 2px;
            outline: none;
        }

        .volume-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 12px;
            height: 12px;
            background: #000;
            border-radius: 50%;
            cursor: pointer;
        }

        .volume-slider::-moz-range-thumb {
            width: 12px;
            height: 12px;
            background: #000;
            border-radius: 50%;
            cursor: pointer;
            border: none;
        }

#score {
  margin-bottom: 1.5em;
}
#pages {

}
div.topbar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 1.5em;
  border-bottom: 2px solid black;
  line-height: 1.5;

}

div.projects {
  width: 100%;
  /* background-color: red; */
  display: flex;
  flex-direction: column;
}
div.summary {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 1.5em;
}

div.text {
  width: 100%;
  margin-left: 1.5em;
}
div.images {
 width: 150%;
}

img{
  width: 100%;
  margin-bottom: 1em;
}
video {
  width: 100%;
  margin-bottom: 1em;
}
.expand{
  display: none;
}
a {
  text-decoration: none;
  color: black;
}
a:visited {
  color: black;
}
a:hover {
  color: red;
}
summary{
  cursor: pointer;
}

/* resume code */
#resume{
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-bottom: 8vh;

}
.job{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 1.5em;
}
.years{
  /* margin-right: 15%; */
  width: 15%;

}
.jobTitle{
  display: flex;
  flex-direction: column;
  width: 70%;

}
.resumeCategory{
  margin-bottom: .75em;
}
.catWithBar{


  border-top: 2px solid black
}