*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Newsreader", serif;
}

/* font drop
font-family: "Inconsolata", monospace;
font-family: "Newsreader", serif;
*/



html, body {
  height: 100%;
  margin: 0;
  background: black;
  scrollbar-width: none;
}

p, h1, h2, h3, u {
    font-family: inherit;
}


.--sansSerif {
    font-family: Arial, Helvetica, sans-serif;
}
a {
    text-decoration: none;
    color: #fff;
}

h1{
    font-weight: 100;
    letter-spacing: 0.1cap;
}

li{
    font-weight: lighter;
}

.pageWrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100dvw;
    height: 100dvh;
    border-radius: 4dvh;
    border: 1dvh solid #000;
    overflow: hidden;
    background: #000;
}


.bodyWrapper{
    display: inline;
}
.headerNav{
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    font-family: "Newsreader", serif;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 5rem;
    z-index: 999;
}

.footer{
    display: flex;
    font-family: "Newsreader", serif;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 5rem;
    background: #111;
}

.headerMenu {
    position: absolute;
    right: 0;
    display: flex;
    gap: 2rem;
    list-style: none;
    margin-right: 1rem;
    padding: 0;
    font-size: 1.5rem;
}

.menuList-wrapper{
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    align-items: center;
    display: flex;
    overflow-y: auto;
    padding: 60px 0;
    margin: 1rem;
    margin-top: 5rem;
    box-sizing: border-box;

}

.menuList-wrapper {
  -ms-overflow-style: none;  /* IE/Edge */
  scrollbar-width: none;     /* Firefox */
}


.projectTitle{
    font-variant: normal;
    font-size: 2rem;
    margin-bottom: 5dvh; 
    transition: all 0.5s;
}

.projectTitleLi {
    margin-bottom: 5dvh; 
}

.projectTitle.highlight {
    color: #fff;
    font-weight: bold;
}


