h1 {
    float: left; /* Add this property */
    text-align: start;
    font-size: 100%;
    color: white;
    margin: 0%;
    padding: 14px 16px;
}

p{
    color: white;
    text-align: start;
    font-size: 2.5vw;
    padding: 0%;
    margin: 0 0 5% 0;
}

.resume{
    margin-left: 15%;
    margin-right: 15%;
}

.resume p{
    color: black;
    font-size: 100%;
    margin: 0%;
}

.resume p2{
    color: black;
    font-size: 100%;
    margin: 0%;
    width: fit-content;
}

.resume p3{
    color: black;
    font-size: 100%;
    margin: auto;
    text-align: center;
}

.resume h1{
    color: black;
    font-size: 150%;
    font-weight: bolder;
    margin: auto;
    float: none;
    width: fit-content;
}

.resume h2{
    color: black;
    font-size: 120%;
    font-weight: bolder;
    float: none;
    margin-bottom: 0;
    width: fit-content;
}

.resume h3{
    font-size: 100%;
    margin: 0;
}

.resume ul{
    margin-top: 0.3%;
    list-style: circle;
}

.date{
    /* float: right; */
    font-style: italic;
    opacity: 0.5;
  }

.date p{
    margin: 0%;
}

/* .row{
    display: flex;
    justify-content: space-between;
} */

hr{
    margin-top: 0%;
}

p1{
    color: white;
    padding: 0%;
    margin: 0%;
    font-weight: 400;
}

p2{
  color: black;
}

p3{
    font-size: 120%;
text-align: center;
}
p4{
    font-size: 100%;
    text-align: center;
    margin: auto;
}
p5{
  opacity: 0.5;
  font-size: 60%;
}
p6{
    color: black;
    font-size: 1.2vw;
    padding: 0%;
    margin: 0%;
    font-weight: 400;
    text-align: start;
}
p8{
    color: black;
    font-size: 1.2vw;
    padding: 0%;
    margin: 0%;
    font-weight: 400;
}

body {
    font-family: 'Roboto Mono', monospace;
    margin: 0; /* Remove default margin */
}

footer{
  padding-top: 5%;
  padding-bottom: 5%;
  text-align: center;
}

  .three {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
}

.three a{
  text-decoration: none;
  font-weight: bold;
  color: #000;
  transition: all 0.3s;
  padding: 3.5%;
  border-bottom: 0.15em solid rgba(255, 255, 255, 0); /* Use border-bottom instead of text-decoration */
}

.three a:hover{
  text-decoration: none;
  font-weight: bolder;
  color: #276c38;
    }

.card {
    height: 200%; /* Set the desired height of your card */
    border: 1px solid #000; /* Add a border for visual separation (optional) */
    margin: 10px; /* Add some margin for spacing (adjust as needed) */
    display:flexbox;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 7vh;
}


.content-container {
  display: flex;
  align-items: center; /* Center items vertically */
  justify-content: center;
  background-color: #34996F;
  box-sizing: border-box;
  /* border: black solid; */
  height: 30%;
  max-width: 100%;
  margin: auto;
  /* margin-top: 3%; */
  margin-bottom: 5%;
}

.image-container,
.text-container {
    text-align: start;
    display: flex;
    box-sizing: border-box; /* Include padding and border in the width */
}


.image-container{
    padding-left:10%;
}

.text-container {
    padding-right: 10%
    }

.image-container img {
  max-width: 17vw; /* Set maximum width to 100% */
  height: auto; /* Maintain aspect ratio */
}

.text-box {
  max-width: 100%; /* Set maximum width to 100% */
  box-sizing: border-box;
  margin-left: 10%; /* Adjust the margin as needed */
  padding: 0;
  padding-top: 1vh;
  padding-bottom: 2vh;
  text-align: start;
}

/* Add a black background color to the top navigation */
.topnav {
    background-color: black;
    overflow: hidden;
    display: block;
}
  
  /* Style the links inside the navigation bar */
  .topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
  }
  .topnav p {
    float: right;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
    margin: 0%;
  }

  #headertitle{
      float: right;
  }
  /* Add an active class to highlight the current page */
  .active {
    background-color: #276c38;
    color: white;
  }
  
  /* Hide the link that should open and close the topnav on small screens */
  .topnav .icon {
    display: none;
  }
  
  /* Dropdown container - needed to position the dropdown content */
  .dropdown {
    float: left;
    overflow: hidden;
  }
  
  /* Style the dropdown button to fit inside the topnav */
  .dropdown .dropbtn {
    font-size: 17px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
  }
  
  /* Style the dropdown content (hidden by default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  /* Style the links inside the dropdown */
  .dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  /* Add a dark background on topnav links and the dropdown button on hover */
   .dropdown:hover .dropbtn {
    background-color: #276c38;
    color: white;
    opacity: 50%;
  }

  .projects {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 3%;
  }

  .projects2 {
      margin-top: 2%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 1%;
    width:70%;
  }



.project-card {
  position: relative;
  overflow: hidden;
}




#space {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3%;
}

.image-overlay {
  position: relative;
  overflow: hidden;
}

.image-overlay img {
  height: auto;
  width: 60vw;
  transition: filter 0.3s;
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 1.5vw;
  opacity: 0;
  transition: opacity 0.3s;
}

.image-overlay:hover img {
  filter: brightness(20%); /* Adjust the darkness on hover */
}

.image-overlay:hover .overlay-text {
  opacity: 1;
}

.mi{
  align-items: center;
  justify-content: center;
  text-align: center;
}
.php{
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 30px;
}

.anim {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  flex-direction: column; /* Change to column */
}
  /* Additional styles for nested container */
  .video-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row; /* Set to row */
  }

  .anim p6 {
    margin-bottom: 10px; /* Adjust as needed */
  }

  video {
    height: auto;
    max-width: 30%; /* Adjust as needed */
  }

  .responsive-google-slides {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Ratio */
    height: 0;
    overflow: hidden;
  }
  .responsive-google-slides iframe {
    border: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
  }

p7 {
      text-align: start;
          font-size: 1.2vw;
    margin-left: 1vw; /* Adjust as needed */
    overflow-y: auto; /* Enable scrolling if content exceeds max-width */
  }



.idm{
      align-items: center;
  justify-content: center;
  text-align: center;
}

.kc{
  align-items: center;
  justify-content: center;
  text-align: start;
  width:70%;
  height:auto;
}

iframe{
    height:80%;
    width:80%;
}


.project-card,
.mi,
.php,
 {
  width: 100%; /* Adjust the width as needed */
  margin-bottom: 20px; /* Add spacing between the divs */
}

.anim {
  width: 70%; /* Adjust the width as needed */
  margin-bottom: 20px; /* Add spacing between the divs */
}


.kc{
  width: 85%; /* Adjust the width as needed */
  margin-bottom: 20px; /* Add spacing between the divs */
}

.kc p7{
          text-align: start;
          font-size: 1.2vw;
          margin-left: 0;
          overflow-y:auto;
          line-height: 1
}

.mi,
.php,
.kc,
.anim {
  border: 2px solid #000; /* Add your preferred border style and color */
  box-sizing: border-box; /* Include padding and border in the width */
  padding: 10px; /* Add padding as needed */
}
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  position:relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.slides{
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90%;
  height: 100%;
  border: none;
}

.projectcard{
  box-sizing: border-box; /* Include padding and border in the width */
  border: black solid;
  padding: 0%;
  margin: 0%;
  height: 30%;
  max-width: 80%;
  display: flex;
  margin-top: 3%;
  background-color: #34996F;
}

.projectcard p{
  color: white;
  font-size: 1.2vw;
  width: fit-content;
  padding: 0%;
  text-wrap: wrap;
  margin-bottom: 1%;
}  

.p2{
  transition: ease-in-out 0.2s;
  text-align: center;
  font-weight: bold;
  font-size: 0.75vw;
  padding: 0.5%;
  border: white solid 1px;
  text-decoration: none;
  color: white;
}



.p2:hover{
    transition: 0.3s all;
    background-color: white;
    color: #34996F;
}

.p3 {
	color: black;
	transition: ease-in-out 0.2s;
	text-align: center;
	font-weight: bolder;
	font-size: 1vw;
	border: #000 1px solid;
	padding: 2%;
	text-decoration: none;
	margin-top: 5%;
	width: 50%;
	margin-left: auto;
	margin-right: auto;
}

.p3:hover {
  color: white;
  background-color: #000;
}

.projectcard video{
  width: 40%;
}
.projectcard img{
  height: auto;
  width: 40%;
}

#idm213{
  margin: auto;
  max-width: 20%;
}

.projectcard h2{
  margin: 0%;
  color: white;
  font-size: 1.2vw;
}

.textbox {
  padding-left: 3%;
  padding-top: 1%;
  padding-right: 3%;
  color: white;
}

.row1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    margin: 0%;
    padding: 2%;
    background-color: #34996F;
}

.row2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin:0%;
  padding:2%;
  padding-top: 1%;
}


.row3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin:0%;
  padding:2%;
  background-color: #34986e;
}

.row4 {
  display: flex;
  margin:0%;
  padding:2%;
  padding-top: 1%;
  width: fit-content;
}

.row5{
  background-color: #34986e;
  padding-top: 1%;
  padding-bottom: 1%;
  margin-bottom: 3%;
}

.title_card {
  display: flex;
  flex-direction: column;
  padding-right: 2%;
}

.title_card2 {
  display: flex;
  flex-direction: column;
}

.hero {
  background-image: url('images/Route-Package-Tracker.png'); /* Replace 'path/to/your/image.jpg' with the actual path to your image */
  background-size: cover;
  background-position: top; /* Display only the top part of the image */
  height: 65%; /* Adjust the height as needed */
}

.hero2 {
  background-image: url('images/thumbnail.jpg'); /* Replace 'path/to/your/image.jpg' with the actual path to your image */
  background-size: 100%;
  background-position: 50% 75%; /* Display only the top part of the image */
  height: 65%; /* Adjust the height as needed */
  filter: blur(1px);
  margin: #34996F solid 3px;
}

.row1 h1{
  color: white;
  font-size: 3vw;
  margin:0%;
  padding:0%;
}

.row1 p{
  color: white;
  font-size: 1.5vw;
  margin:0%;
  padding:0%;
}

.row2 h1{
  font-size: 2vw;
  margin:0%;
  padding:0%;
  color: #000;

}

.row2 p{
  font-size: 1.5vw;
  margin:0%;
  padding:0%;
  color: #000;
}

.title_card p2{
  font-size: 1.2vw;
  margin:0%;
  padding:0%;
  color: #000;
}

.row3 h1{
  color: white;
  font-size: 2.5vw;
  margin:0%;
  padding:0%;
}


.row4 h1{
  font-size: 2vw;
  margin:0%;
  padding:0%;
  color: #000;
  padding-right:1%;
}

.row4 p{
  font-size: 1vw;
  margin:0%;
  padding:0%;
  color: #000;
}

.title_card2 h1{
  font-size: 2vw;
  margin:auto;
  padding:0%;
  color: #000;
}

.title_card2 p{
  font-size: 1vw;
  margin:auto;
  padding:0%;
  color: #000;
  padding-bottom: 1%;
}

.row1 p2{
    color: white;
}

#anim213{
  margin: auto;
  width: 20vw;
}


.title_card h2{
  font-size: 2vw;
  margin:0%;
  padding:0%;
  color: #000;
  padding-right:1%;
}
.idm213{
  width: 65vw;
}
.idm213w{
  width: 65vw;
  border: #000 solid 1px;
}
.row4 .row2{
  width: fit-content;
}

.idm213p{
  width: 65vw;
  border: #5FB2FF solid 1px;
}

* {box-sizing:border-box}

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

/* Hide the images by default */
.mySlides {
  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: 1vw;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 1vw;
  width: 1vw;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #276c38;
}

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


.expvid{
  max-width:60%;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Two columns */
  grid-template-rows: repeat(2, auto); /* Two rows */
  gap: 0.5vw;
}

.grid-container div {
  width: fit-content;
}

.grid-container img {
  max-width: 80%; /* Ensure images don't exceed their container width */
  height: auto; /* Maintain aspect ratio */
  display: block; /* Make sure the image is a block element */
  margin: auto; /* Center the image horizontally */
}

#idm241{
  padding-right: 5vw;
}

.row4 li{
  font-size: 1vw;
  margin:0%;
  padding:0%;
  color: #000;
}

.hero3 {
  background-image: url('images/360_F_252388016_KjPnB9vglSCuUJAumCDNbmMzGdzPAucK.jpg'); /* Replace 'path/to/your/image.jpg' with the actual path to your image */
  background-size: cover;
  background-position: top; /* Display only the top part of the image */
  height: 65%; /* Adjust the height as needed */
}

.column-container {
  display: flex; /* Use flexbox */
  flex-direction: column; /* Arrange items in a column */
  gap: 1vw;
  padding: 1vw;
}

.column-item {
  /* Add styles for each column item */
}

.screenshot{
  max-width: 90%;
}

#scrollbutton{
    cursor: pointer;
}

.projectcard{

}

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

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


/* Adjustments for smaller screens */
@media screen and (max-width: 755px) {

    .p3 {
	color: black;
	transition: ease-in-out 0.2s;
	text-align: center;
	font-weight: bolder;
	font-size: 2vw;
	border: #000 1px solid;
	padding: 2%;
	text-decoration: none;
	margin-top: 5%;
	width: 50%;
	margin-left: auto;
	margin-right: auto;
}

    .row4 li {
    font-size: 2vw;
    margin: 0%;
    padding: 0%;
    color: #000;
}

video {
    height: auto;
    width: 50%;
}

.row4 p {
    font-size: 2vw;
    margin: 0%;
    padding: 0%;
    color: #000;
}

.title_card p2 {
    font-size: 2vw;
    margin: 0%;
    padding: 0%;
}

.hero {
  background-image: url('images/Route-Package-Tracker.png'); /* Replace 'path/to/your/image.jpg' with the actual path to your image */
  background-size: cover;
  background-position: top; /* Display only the top part of the image */
  height: 25%; /* Adjust the height as needed */
}

.hero2 {
  background-image: url('images/thumbnail.jpg'); /* Replace 'path/to/your/image.jpg' with the actual path to your image */
  background-size: 100%;
  background-position: 50% 70%; /* Display only the top part of the image */
  height: 25%; /* Adjust the height as needed */
  filter: blur(1px);
  margin: #34996F solid 3px;
}

.hero3 {
  background-image: url('images/360_F_252388016_KjPnB9vglSCuUJAumCDNbmMzGdzPAucK.jpg'); /* Replace 'path/to/your/image.jpg' with the actual path to your image */
  background-size: cover;
  background-position: top; /* Display only the top part of the image */
  height: 25%; /* Adjust the height as needed */
}

    .title_card {
    padding-bottom: 2%;
    padding-right: 0%;
    }

    .row1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    margin: 0%;
    padding: 2%;
    background-color: #34996F;
}

.row2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    margin: 0%;
    padding: 2%;
    padding-top: 1%;
}

.row4 {
    display: grid;
    margin: 0%;
    padding: 2%;
    padding-top: 1%;
    width: fit-content;
    grid-template-columns: repeat(1, 1fr);
}

    #headertitle{
        float: left;
    }


    .projects {
  display: flex;
  flex-direction: column; /* Arrange projects in a column */
  align-items: center; /* Center projects horizontally */
  gap: 20px; /* Adjust the gap between project cards */
}

.projectcard {
  width: 70%; /* Adjust the width of the project card */
  /* Other styles for the project card */
}

.projectcard .buttons-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Arrange buttons in a 2x2 grid */
  gap: 10px; /* Adjust the gap between buttons */
}

.projectcard .buttons-container button {
  /* Styles for buttons */
}

    /* Hide the HOME link on smaller screens */
    .topnav a[href="index.html"] {
        display: none;
    }
    
    /* Display the header title on smaller screens */
    #headertitle {
        display: block;
        font-size: 12px;
        margin: auto;
        width: fit-content;
    }
    
    /* Styles for responsive navigation */
    .topnav a:not(:first-child) {display: none;}
    .topnav a.icon {
        display: block;
        font-size: 12px;
        margin: auto;
        float: right;
    }
    .topnav p{
        display: none;
    }
    .topnav.responsive {position: relative;}
    .topnav.responsive .icon {
        position: absolute;
        right: 0;
        top: 0;
    }
    .topnav.responsive a {
        float: none;
        display: block;
        text-align: left;
    }

}


@media screen and (max-width: 755px) {
    .three {
        flex-direction: column; /* Change layout to column */
        align-items: center; /* Center items horizontally when in column layout */
    }
    
.projectcard {
  display: flex;
  flex-direction: column; /* Arrange elements in a column */
  width: 70%; /* Set width to auto */
  box-sizing: border-box;
  border: black solid;
  padding: 0;
  margin: 0;
  background-color: #34996F;
}


.image-container {
  width: 100%;
}

.image-container img {
  width: 100%; /* Adjust image width */
  height: auto; /* Maintain aspect ratio */
}

.textbox {
  padding: 10px; /* Add padding */
  color: white;
  width: 85%;
  margin: auto;
}

.textbox p {
  margin: 0; /* Remove default margins */
  padding: 0; /* Remove default padding */
  font-size: 2.5vw;
}

.textbox h2{
    margin: 0; /* Remove default margins */
    padding: 0; /* Remove default padding */
    font-size: 4vw;
    text-align: center;
}

.buttons-container {
    padding-top: 10px;

} 

.projectcard img{
    width: 100%;
}

.p2{
    font-size: 2vw;
    padding: 5%;
    margin: auto;
    width: 75%;
}


.text-container{

}


}

