h3 {
    color : var(--lightwhite)
}

h4 {
    color : var(--lightwhite)
}

.table-container {
    max-width: 100%;
    overflow-x: auto;
}
  
.table-container table {
    width: 100%;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
}

ul li {
  line-height: 1.5;
}

ul li {
  margin-bottom: 0.5em;
}

.center-box {
    width: 90%;
    max-width: 900px;
    padding: 4vw;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.body {
    justify-content: start;
    text-align: left;
    font-family: 'Book Antiqua', 'Palatino Linotype', 'Georgia', Palatino, serif;
    letter-spacing: 0.03em;
    line-height: 1.7;
    padding-bottom: 9vh;
}

.body a {
    color: var(--lightwhite);  
} 

.toc a {
  color: var(--lightwhite)
}

.toc {
  max-width: 80%;
  margin: 0 auto; 
  text-align: left;
}

.scribbles {
  max-width: 100%;
  height: auto;
}

.small-scribbles {
  max-width: 60%;
  height: auto;
  display: block;
  margin: 0 auto;
}


.left-navbar {
    display: flex;
    justify-content: flex-start; 
    align-items: center;
    gap: 3vw;
    height: auto;
    flex-direction: row;
}

figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 80%;
  margin: 0 auto;
  margin-top: 3vh;
  margin-bottom: 3vh; 
}

figure img {
  width: 100%;
  object-fit: cover;
}

figcaption {
  font-family: Consolas, monospace;
  font-size: 14px;
  font-weight: 500;
}

.highlight {
    color: var(--lightwhite);
    text-align: center;
    align-items: center;
    justify-content: center;
    font-family: 'Courier New', Courier, monospace;
    margin: 3vh;
}

.section-title {
    color: var(--red);
    text-align: center;
    align-items: center;
    justify-content: center;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    margin-top: 3vh; 
    margin-bottom: 2vh;    
}

.author-table {
    font-family:'Courier New', Courier, monospace;
    font-size: 0.9em;
    margin-top: 5vh;
    margin-bottom: 5vh;
    text-align: center;
    line-height: 1vh;
}

.whisper {
    color: var(--grey1);
    text-align: center;
    align-items: center;
    justify-content: center;
}

#intro {
    font-style: italic;
    text-align: center;
    color : var(--lightwhite)
}

a {
    color: var(--yellow); 
    justify-content: space-between;
    text-decoration: underline;
}

table {
  border-collapse: collapse;
  margin: 0 auto;
  width: 80%; 
  font-family: 'Courier New', Courier, monospace;
  margin-bottom: 3vh;
}

td img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 2vh;
}

.box {
    border: 1px solid var(--lightwhite);
    border-radius: 1px;
    padding-left: 3em;
    padding-right: 3em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    width: 80%;
    margin: 1em auto;
    background-color: transparent;
    text-align: center;
    max-width: 90%;
    font-size: 0.9em;
    margin-top: 3vh; 
    margin-bottom: 3vh;
    color: var(--lightwhite)
}


.code-wrapper {
  position: relative;
  width: 80%;
  margin: 0 auto;
}

.code-block {
  font-family: Consolas, monospace;
  white-space: pre;
  overflow: auto;
  text-align: left;
  border: 1px solidd var(--grey1);
  width: 100%;
  margin: 0;
  display: block;
  font-size: 0.9em;
  padding: 16px;
  box-sizing: border-box;
}

.copy-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  font-family: Consolas, monospace;
  font-size: 0.75em;
  padding: 4px 10px;
  cursor: pointer;
  border: none;
  border-radius: 4px;
  background: --var(grey1);
  color: #333;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.copy-btn:hover {
  opacity: 1;
}

.left-box {
    border: 1px solid var(--grey1);
    border-radius: 1px;
    padding-left: 2em;
    padding-right: 2em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    width: 80%;
    margin: 1em auto;
    background-color: transparent;
    text-align: left;
    max-width: 90%;
    font-size: 0.9em;
    margin-top: 3vh; 
    margin-bottom: 3vh;
}

.container {
    text-align: center;
    margin-top: 2vh; 
    margin-bottom: 2vh;
}

.box-title {
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    text-align: center; 
    color: var(--lightwhite); 
}

@media (max-width: 600px) {
    
    body {
        line-height: 1.6;
        display: flex;
        flex-direction: column;
        height: 100vh;
        overflow-x: hidden;
        text-align: center;
        padding: 3vw;
    }

    .box {
        padding: 0.5em 1.5em;
        width: 95%;
    }

    html {
        font-size: 15px;
    }

    .side-by-side {
        flex-direction: column;
        gap: 0rem;
    }

    .side-by-side img {
        max-width: 60%;
    }

}