*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* Typography ------------------------------------------- */
h1{
    font-size: 11pt;
    font-weight: 100;
    font-style: normal;
    text-decoration: underline;

    font-family: neue-haas-grotesk-text, sans-serif;
}

h2{
    font-size: 12pt;
    font-weight: 100;
    font-family: plantin, sans-serif;

}

h3{
    font-size: 10pt;
    font-weight: 100;
    font-family: neue-haas-grotesk-text, sans-serif;

}

/* Links -------------------------------------------------------------------- */
/* unvisited link */
a:link {
    color: rgb(0, 0, 0);
    text-decoration: none;

}
/* visited link */
a:visited {
    color: rgb(0, 0, 0);
    text-decoration: none;

}
a:hover{
    color: rgb(17, 255, 0);
    text-decoration: underline;
}

/* ------------------------------------------- */
.grid-container{
    height: 100vh;
    display: grid;
    grid-template-columns: 23% 77%;
    padding-left: 10px;
    padding-right: 15px;
    background-color: rgb(255, 255, 255);

}

.contact-info{
    position: absolute;
    bottom: 15px;
    left: 15px;
}

/* Side Bar ------------------------------------------- */
.sidebar{
    position: relative;

    height: 100%;
    width: 100%;
    padding-right: 15px;
    padding-left: 10px;
    padding-top: 15px;

    border-right: 2px dotted black;
}

@media only screen and (max-width:600px) {
  .grid-container {grid-template-rows: 30% 70%; grid-template-columns: 100%;}
}

.celine-fu{
    cursor: pointer;
}
.celine-fu:hover{
    color: rgb(17, 255, 0);
}

/* Main Bar ---------------------------------------------------- */
.mainbar{
    display: grid;
    height: 100vh;
    overflow-y: scroll;
}

/* Main Bar / Individual Projects ------------------------------------------- */
.top-project{
    padding-right: 12px;
    padding-left: 12px;
    padding-bottom: 5px;
    padding-top: 13px;
}
.projects{
    padding-right: 12px;
    padding-left: 12px;
    padding-bottom: 5px;
    padding-top: 12px;
    border-top: 2px dotted black;
}

.two-images{
    display: grid;
    grid-template-columns: 50% 50%;
    grid-gap: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
}
.two-images img{
    max-width: 100%;
    max-height: 100%;
}

.project-description{
    display: grid;
    grid-template-columns: 25.5% 25.5% 49%;
   
    padding-top: 16px;    
    padding-bottom: 30px;      
  
}



/* Slideshow -------------------------------------------------------------------- */

.mySlides1, .mySlides2, .mySlides3 {
    display: none;
}
img {
    vertical-align: middle;
}

/* Slideshow container-------------------------------------------------------------------- */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

.slideshowcontainer-container {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-gap: 12px;
}

/* Next & previous buttons ------------------------------------------------------ */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 10px;
  margin-top: -22px;
  color: rgb(17, 255, 0);
  font-weight: bold;
  font-size: 10px;
  user-select: none;
}

.prev:hover, .next:hover{
    color: rgb(239, 239, 239);
    text-decoration: none;
}


/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 1px 0 0 1px;
}

