html, body {
    margin: 0;
    padding: 0;
    font-family: 'Tahoma', sans-serif;
}

body {
  background-color: whitesmoke;
  overflow-x: hidden;
}

a:link{
  color: black;
}

a:visited{
  color: black;
}

a:hover {
  color: darkgray;
}

a:active {
  color: black;
  text-decoration: none;
}

.top-bar {
  position: fixed;
  background-color: skyblue;
  opacity: 0.85;
  display: flex;
  justify-content: space-between;
  width: 100%;
  z-index: 2;
}

.github-pic{
  padding-top: 15px;
}

.linkedin-pic{
  padding-top: 15px;
}

.page-header{
  font-size: 48px;                /* make the link bigger */
  display: flex;
  justify-content: center;
  padding-top: 120px;
}

.bio{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 200px;
  padding-right: 200px;
  text-align: center;
  color: white;
}

.left-links{
  font-size: 35px;                /* make the link bigger */
  padding-left: 25px;
}

.middle-links{
  font-size: 35px;   
  display: flex;
  justify-content: space-evenly;
  gap: 50px; 
  padding-top: 15px;
}

.right-links a{
  font-size: 35px;                /* make the link bigger */
  text-decoration: none;
  padding-right: 25px;
}

.header {
  background-image: url(/images/home-bg.png);
  background-size: cover;
  background-position: center top;
  align-items: center;
}

.headshot {
  border-radius: 50%;
  width: 25vw;
  height: auto;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 7em;
}

.headshot-container{
  display: block;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-top: 2em;
}

.about-me{
  font-size: 48px;                /* make the link bigger */
  display: flex;
  justify-content: center;
  padding-top: 50px;
}

.links-container {
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding-bottom: 50px;
  padding-left: 30px;
  padding-right: 30px;
  gap: 30px;
  flex-wrap: wrap;
}

.link-box {
  border: 1px solid black;
  border-radius: 10px;
  padding: 1rem 1.5rem;
  font-size: 20px; 
  text-align: center;
  width: 350px;
}

.subpage-content-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 30px;
  padding-right: 30px;
  gap: 50px;
}

.content-box{
  border: 1px solid black;
  border-radius: 10px;
  padding: 1rem 1.5rem;
  font-size: 20px; 
  gap: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.link-box{
  background-color: skyblue;
  opacity: 0.85;
}

.link-header{
  font-size: 36px;
}

.link-text{
  font-size: 18px;
}

.content-text {
  display: flex;
  flex-direction: column;
}

.project-link a{
  color: blue;
}

.carousel {
  margin: 100px auto;
  width: 100%;
  display: flex;
  overflow-x: auto;
}
.carousel::-webkit-scrollbar{
  display: none;
}
.group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  animation: spin 180s infinite linear;
  padding-right: 1em;
}
.card-img{
  height: auto;
  width: 5em;
  border-radius: 5%;
  overflow: hidden;
  display: block;
}

.card{
  flex: 0 0 5em;
  height: 5em;
  width: 5em;
  font-size: 3rem;
  border-radius: .2em;
  text-align: center;
  align-content: center;
}

.slideshow-container {
  width: 100vw;
  position: relative;
  overflow: hidden;
}

.slideshow-wrapper {
  width: 100%;
  display: flex;
  animation: slide 32s infinite;
}
@keyframes slide {

    0%{
        transform: translateX(0);
    }
    6%{
        transform: translateX(0);
    }
    11%{
        transform: translateX(-100%);
    }
    22%{
        transform: translateX(-100%);
    }
    27%{
        transform: translateX(-200%);
    }
    39%{
        transform: translateX(-200%);
    }
    44%{
        transform: translateX(-300%);
    }
    55%{
        transform: translateX(-300%);
    }
    60%{
        transform: translateX(-400%);
    }
    72%{
        transform: translateX(-400%);
    }
    77%{
        transform: translateX(-500%);
    }
    89%{
        transform: translateX(-500%);
    }
    94%{
        transform: translateX(-600%);
    }
    100%{
        transform: translateX(-600%);
    }


}

.page-content {
  display: flex;
  flex-direction: row;
  position: relative;
  height: 100vh;
  width: 100vw;
}

@keyframes spin {
  from {translate: 0;}
  to {translate: -100%}
}

.page-header-video {
  position: absolute;   
  top: 30%;             
  left: 50%;            
  transform: translateX(-50%); 
  color: white;
  font-size: 4rem;
  font-weight: bold;
  text-shadow: 0 0 5px rgba(0,0,0,0.5); /* optional: makes text readable */
}

.page-header-highlight-video {
  display: flex;
  position: relative;           
  color: white;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: bold;
  text-shadow: 0 0 5px rgba(0,0,0,0.5); /* optional: makes text readable */
  align-items: center;
  justify-content: center;
  padding-top: 3em; padding-bottom: 2em;
}

.video-container {
  display: flex;
  flex-direction: column;
  width: 100vw;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: -1;
}

.video-container-cube {
  position: relative; 
  height: 25vh; 
  width: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: -1;
}

.highlight-content-box{
  border: 1px solid white;
  border-radius: 10px;
  padding: 1rem 1.5rem;
  font-size: 20px; 
  gap: 20px;
  display: flex;
  align-items: center;
  position: relative;
  color: white;
}

.highlight-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2em;
  padding-top: 5em;
  padding-left: 2em;
  padding-right: 2em;
}

.round-button a{
  font-size: 23px;
  background-color: white;
  color: black;
  text-decoration: none;
  border: 2px solid white;
  padding: 15px 25px;
  border-radius: 50px;
  position: relative;
  transition: 0.3s;
}

.grid-gallery {
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  gap: 2em;
}

.row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  position: relative;
  gap: 2em;
}

.grid-img {
  width: 12em;
  height: auto;
  border-radius: 5%;
  border: 2px solid white;
  display: block; 
}

.highlight-project {
  display: flex; 
  flex-direction: column; 
  position: relative; 
  height: auto; 
  width: 100vw; 
  justify-content: center; 
  align-items: center;
}

.highlight-forfun {
  display: flex; 
  flex-direction: row; 
  position: relative; 
  height: auto; 
  width: 100vw;
}

  .highlight-experience {
  display: flex; 
  flex-direction: column; 
  position: relative; 
  height: 100vh; 
  width: 100vw; 
  gap: 10em;
}


@media (min-width: 1000px) {
  .page-header-highlight-video {
  position: relative;           
  color: white;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: bold;
  text-shadow: 0 0 5px rgba(0,0,0,0.5); /* optional: makes text readable */
  justify-content: left;
  padding-left: 0.4em;
  padding-bottom: 0.5em;
}

.page-header-video {
  position: absolute;   
  top: 20%;             
  left: 50%;            
  transform: translateX(-50%); 
  color: white;
  font-size: 4rem;
  font-weight: bold;
  text-shadow: 0 0 5px rgba(0,0,0,0.5); /* optional: makes text readable */
}

  .highlight-project {
    display: flex; 
    flex-direction: row; 
    position: relative; 
    height: auto; 
    width: 100vw; 
    justify-content: center; 
    align-items: center;
  }

  .highlight-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2em;
  padding-top: 5em;
  padding-left: 3vh;
}

.highlight-experience {
  display: flex; 
  flex-direction: row; 
  position: relative; 
  height: 100vh; 
  width: 100vw;
  font-size: 1em;
  padding-top: 5em; 
  gap: 10em;
}

.grid-gallery {
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
  padding-right: 4em;
  max-width: 1200px;
}

.row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  position: relative;
  gap: 2em;
  padding-bottom: 2em;
}

.video-container-cube {
  position: relative; 
  height: 65vh; 
  width: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: -1;
}

}


