:root {
    --linkColor: whitesmoke;
    --linkHoverColor: rgb(200, 200, 200);
    --headerHeight: 8vh;
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}

html {
    background-color: black;

}

body {
    background-color: rgb(238, 238, 238);
    width: 100vw;
    height: 100vh;
    min-height: calc(100vh - var(--headerHeight));
    margin: 0;
    padding: 0;
    border: none;
    scrollbar-width: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;

}

nav {
    
    width: 100%;
    height: var(--headerHeight);
    font-family: 'Bitter', serif;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: rgb(0, 0, 0);

    position: sticky;
    top: 0;
    left: 0;
    color: var(--linkColor);
    min-height: 50px;
    transition: 0.2s ease all;
    z-index: 100;
}



nav h1, nav h3 {

    padding: 0;
    margin: 0;
}



.headerHolder {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    /* padding: 4vh; */
    width: 33.33333%;
}

nav a {
    color: var(--linkColor);
    text-decoration: none;
    font-size: 2.2vh;
}

nav a:hover {
    color: var(--linkHoverColor);
    transition: all 0.2s ease;
}




#logo {
    height: 6.5vh;
    
    min-height: 40px;
    transition: all .2s ease;
}

#homeLink {
    height: 7vh;
    margin: 0;
    padding: 0;
}

#logo:hover #background {
    fill: var(--linkHoverColor);
    transition: all 0.8s ease;
}

#headerLeft {
    flex-direction: row-reverse;
}

#headerRight {
    height: 100%;
}

#headerRight a {
    width: 33%;
}




#abLink {
    width: calc(100% - 8vh);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

footer {
    width: 100%;
    height: 20vh;
    border-top: black 0.8vh solid;


    background-color: rgb(19, 19, 19);

    margin-bottom: -1vh;
}