@import url('https://cdn.jsdelivr.net/npm/holiday.css@0.11.0');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css');
@import "lightbox/lightbox.css";

:root {
    /* Sizes */
    --max-body-width: 58rem;
    --border-radius: 0.25rem;
    --border-width: 1px;
  
    /* Light mode colors */
    --light-border-color: #dbdbdb;
    --light-border-hover-color: #b5b5b5;
    --light-background-color: #fff;
    --light-highlighted-background-color: #f5f5f5;
    --light-text-color: #363636;
    --light-danger-color: #f14668;
    --light-danger-text-color: #fff;
    --light-danger-hover-color: #f03a5f;
    --light-success-color: #48c774;
    --light-success-text-color: #fff;
    --light-success-hover-color: #3ec46d;
    --light-danger-text-background-color: #fde0e6;
    --light-success-text-background-color: #effaf3;
    --light-code-text-color: #f14668;
    --light-code-background-color: #f5f5f5;
    --light-link-color: #3273dc;
    --light-link-visited-color: #b86bff;
    --light-link-hover-color: #363636;
    --light-link-active-color: #363636;
  
    /* Dark mode colors */
    --dark-border-color: #5f6267;
    --dark-border-hover-color: #bcbebd;
    --dark-background-color: #202124;
    --dark-highlighted-background-color: #292b2e;
    --dark-text-color: #fff;
    --dark-danger-color: #770018;
    --dark-danger-text-color: #fff;
    --dark-danger-hover-color: #6b0015;
    --dark-success-color: #006624;
    --dark-success-text-color: #fff;
    --dark-success-hover-color: #006122;
    --dark-danger-text-background-color: #770018;
    --dark-success-text-background-color: #006624;
    --dark-code-text-color: #f1a0b0;
    --dark-code-background-color: #292b2e;
    --dark-link-color: #90b3ed;
    --dark-link-visited-color: #90b3ed;
    --dark-link-hover-color: #fff;
    --dark-link-active-color: #fff;
  }

  .anchor {
    display: block;
    position: relative;
    top: -145px;
    visibility: hidden;
  }

.section-title {
    /* color: #ddd7ff; */
    text-align: center;
    height: 50px;
    margin-bottom: 10px;
}

.header-links {
    display: table;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 10px;
}

a.icons:visited {
    color: #90b3ed;
  }

a.icons:hover {
    color: #fff;
  }

.horizontal {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 10px;
    margin-left: 30%;
    margin-right: 30%;
    align-items: center;
  }

  .resume-horizontal {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 10px;
  }

html * {
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.title {
    font-size: 3.0em;
    margin-top: 16px;
    margin-bottom: 0px;
    text-align: center;
}

.header-stuff {
    position: sticky;
    top: 0;
    width: 100%;
    max-width: var(--max-body-width);
    background: var(--dark-background-color);
    z-index: 100;
}

/* .body-stuff {
    padding-top: 10px;
} */

.grid-container-three {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 10px;
    align-items: stretch;
}

.grid-container-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
    align-items: stretch;
}

.grid-container-one {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 10px;
    align-items: stretch;
    margin-top: 40px;
}

div.subsection {
    position: relative;
    margin: auto;
    right: inherit;
    left: inherit;
    max-width: 90%;
}

div.project-grid {
    display: grid;
    grid-template-columns: 5fr 3fr;
    margin-bottom: 20px;
    column-gap: 10px;
    margin-left: 0%;
    margin-right: 0%;
}
div.project-title {
    height: min-content;
}
div.project-text {
    max-height: max-content;
    min-height: 200px;
}
div.project-images {
    width: 100%;
}

.subtitle {
    /* color: white;
    position:absolute;
    bottom:0%;
    background: rgba(0,0,0,0.5);*/
    text-align: center;
    scale: 0.9;
    color: #c7c7c7
}

.spaced-up {
    margin-top: 50px;
}

.spaced-down {
    margin-bottom: 20px;
}

div.about-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    margin-bottom: 20px;
    margin-top: 30px;
    column-gap: 20px;
}


a.page-navigation {
    color: #cbcbcb;
  }

a.page-current {
    font-weight: bold;
    color: #fff;
}

a.page-navigation:hover {
    color: #fff;
  }

  .gallery {
    max-width: 1000px;
    position: relative;
    margin: auto;
  }

  .gallery-item {
    display: none;
  }

  /* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }

  /* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
  }

  /* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    top: 0;
    background-color: rgba(29, 29, 29, 0.8);
  }

  /* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position:inherit;
    bottom: 8px;
    width: 100%;
    text-align: center;
  }

  /* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

footer {
    padding-top: 1rem;
    border-top: var(--border-width) solid var(--border-color);
    padding-bottom: 1rem;
    text-align: center;
}

.active {
  color: #fbfbfb;
  border-bottom: 2px solid #fbfbfb;
}