img {
    max-width: 100%; 
    height: auto;
}
#profile_photo {
    width: 150px;
    height: 150px;
    object-fit: cover;
    display: block;
}

#profile_photo_div {
    display: flex;
    justify-content: center; /* Centers horizontally */
}

.showcase {
    width: 300px;
    height: 300px;
    object-fit: cover;
    margin-left: 15px
}

#blueprint{
    width: 900px;
    object-fit: cover;
    margin-left: 15px
}

.gifs {
    margin-left: 15px
}

.video-container {
    display: flex;       /* Aligns items horizontally */
    gap: 15px;          /* Adds a nice gap between the videos */
    justify-content: center; /* Centers the videos on the page */
    width: 100%;
}
    

.video-container video {
    max-width: 50%;
    height: auto;
    }
body {
  margin: 0;
  padding: 0;
  background-color: #F7FFDD;
  font: 20px Jost, sans-serif;
}

.navul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #D0E3CC;
}

.navli {
  float: left;
}

.navli a {
  display: block;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.navli a:hover {
  background-color: #EFD780;
}

h1 {
    text-align: center;
}

p, h2{
    padding-left: 10px;
}

.project-card {
    width: 300px;
    min-height: 200px;
    background-color: #f0f0f0;
    border: 2px solid #333;
    border-radius: 8px;
    padding: 15px;
    box-sizing: border-box;
    margin-left: 15px;
}

#projects {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: left;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(1) { transition-delay: 0s; }
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }