/* Global box-sizing for edge-to-edge layouts */
html, body, *, *:before, *:after {
    box-sizing: border-box;
}

/* General Styles */
body {
    background-color: #f0f4ef;
    font-size: 18px;
    font-family: "DM Sans", sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

h1, h2, h3, p {
    margin: 0;
    padding: 0;
}

h1 {
    margin-top: 40px; /* Add space between the nav bar and the heading */
    font-size: 60px; /* Keep the font size consistent */
    text-align: left; /* Align the text to the left */
    padding-left: 60px; /* Maintain the left padding */
    color: #0D1821; /* Keep the text color consistent */
}

h2 {
    font-size: 30px;
    color: #383e22;
    margin: 20px 0 10px;
}

h3 {
    font-size: 20px;
    color: #4e698e;
}

p {
    font-size: 18px;
    color: #0D1821;
    padding: 20px 0;
}

/* Navigation */
.nav {
    display: flex; /* Use Flexbox for layout */
    justify-content: space-between; /* Space out the nav items and hamburger menu */
    align-items: center; /* Center the items vertically */
    padding: 25px 20px; /* Add padding for spacing */
    font-weight: bold; /* Keep the font bold */
    position: relative; /* Needed for absolute positioning of menuToggle */
}

.nav a {
    text-decoration: none;
    color: #0a3253;
}

.nav a:hover {
    color: #4e698e;
    border-bottom: 5px #8ca3c1 solid;
}

/* Hamburger Menu */
#menuToggle {
  position: absolute;
  top: 50px;
  left: 50px;
  z-index: 1000;
}

#menuToggle a
{
  text-decoration: none;
  color: #232323;
  
  transition: color 0.3s ease;
}

#menuToggle a:hover
{
  color: tomato;
}


#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0; 
  z-index: 2; 
  
  -webkit-touch-callout: none;
}

/* Hamburger menu bars */
#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: #000000;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #232323;
}

/* hides the middle bar for crossmark tranformation
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * line roatation for crossmark transformation
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Position
 * at the top left of the screen
 */
#menu
{
  position: absolute;
  max-width: 400px;
  width: 100vw;
  max-height: 100vh;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;
  box-sizing: border-box;
  overflow-y: auto;
  background: #fff;
  list-style-type: none;
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 10px 0;
  font-size: 22px;
}

#menu li label
{
  cursor: pointer;
}

/* slide in menu from the left
 */
#menuToggle input:checked ~ ul
{
  transform: none;
}


/* Header */
header {
    display: flex;
    justify-content: center; /* Center horizontally */
    height: 75px; 
    padding: 0; 
    position: relative;
    background-image: url("../images/streetlights.gif");
    background-repeat: no-repeat;
    background-size: cover;
    text-align: left;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    padding: 0;
}

header h1 {
    font-size: 35px;
    color: #ffffff;
    text-align: right;
    z-index: 2;
}

header::before {/* dark overlay on header image */
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

/* Text Blocks */

.text-block1 {
    background: radial-gradient(circle, rgba(242, 246, 243, 1) 0%, rgba(180, 205, 237, 1) 100%);
    color: #0D1821;
    border-top: 5px solid #0D1821;
    padding: 20px;
}
.text-block1 h2 {
    color: #0D1821;
}

/* Buttons */
.button-link {
    display: inline-block;
    background-color: #BFCC94;
    border: 2px solid;
    border-radius: 8px;
    color: #0D1821;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 30px; 
}

.button-link:hover {
    background-color: #9bb34a;
}

/* Project Cards HOMEPAGE*/

.project-card, .project-card-homepage {
    background-color: #ffffff;
    border-radius: 8px;
    margin: 0;
    padding: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.align {
    align-items:stretch;
}
.project-card-homepage {
    display: flex; /* Use Flexbox for layout */
    flex-direction: column; /* Stack content vertically */
    align-items: center; /* Center-align the content */
    width: 90%; /* Set the width of the card */
    background-color: #ffffff; 
    border-radius: 8px; /* Add rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
    overflow: hidden; /* Prevent content from spilling out */
    margin: 20px auto; /* Add spacing between cards */
    padding: 20px; /* Add padding inside the card */
}


/* Navigation Links */
.nav a {
    font-family: "DM Sans", sans-serif;
    text-decoration: none;
    color: #0a3253;
    font-size: 22px;
    padding: 0 30px;
}

.nav a:hover {
    color: #4e698e;
    border-bottom: 5px #8ca3c1 solid;
}

/*Hamburger*/

h1 {
    margin-top: 20px;
    font-size: 70px;
    text-align: left;
    padding-left: 60px; 
    color: #0D1821; 
}

h2 {
    margin-top: 20px; /* Keep some spacing above */
    margin-bottom: 10px; /* Reduce spacing below */
    padding: 5px; 
    font-family: "DM Sans", sans-serif;
    color: #383e22;
}

h3{
    font-family:"dm sans", sans-serif;
}

p{
    font-family: "dm sans", sans-serif;
    line-height: 1.6;
    padding: 20px;
}

body {
    background-color: #f0f4ef;
    font-size: 18px; 
}



.text-block2 {
    background-color: #1c2934;
    color: #B4CDED;
    padding: 20px;
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
    margin: 0;
    border-top: 5px solid #B4CDED;
}

.text-block2 h2{
    color:#B4CDED;
    font-weight: 400;
}

.text-block2 h3{
   color: #dbe6f3;
}

.text-block2 p{
    color:#f0f8ff;
 }

.text-block2 h3 a{
    text-decoration: none;
    color: #dbe6f3;
}
.text-block1 h3, .text-block2 h3 {
    padding-top: 20px;
}

header {
    display: flex; /* Use Flexbox for layout */
    height: 35px; /* Set the height of the header */
    padding: 0 20px; /* Add padding for spacing */
    background-image: url("../images/streetlights.gif");
    background-repeat: no-repeat;
    background-size: cover;}

header h1 {
    font-size: 35px; /* Adjust font size */
    color: #ffffff; /* Ensure the text is white for contrast */
    text-align: right; /* Align the text to the right */
    margin: 0; /* Remove default margins */
    padding: 0; /* Remove default padding */
    z-index: 2; /* Ensure the text is above the background */
}

header h2 {
    font-family: "DM Sans", sans-serif;
    color: #0D1821;
}

header h3 {
    padding-top: 0;
    padding-right: 30px;
    text-align: right;
    color: white;
}



header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); 
}

/*IMAGES*/
img {
    width: 100%; /* Ensure the image spans the full width of its container */
    height: auto; /* Maintain aspect ratio */
    margin: 0; /* Remove any default margins */
    padding: 0; /* Remove any padding */
    border: none; /* Remove any borders */
    box-shadow: none; /* Remove any shadows */
}


/*BUTTONS*/

.button-link {
    display: inline-block;
    background-color: #BFCC94;
    border: 2px solid;
    border-radius: 8px;
    color: #0D1821;
    padding: 10px 20px; 
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-family: "DM Sans", sans-serif;
    align-self: center; 
    white-space: nowrap; 
    max-width: 100%; 
    overflow: hidden; /* Prevent content overflow */
    margin-bottom: 20px; /* Add breathing room below the button */
}

.button-link:hover {
    background-color: #9bb34a;
}

/*WORK PAGE*/
.projects-grid {
    display: flex; /* Use Flexbox for layout */
    flex-direction: column; /* Stack the cards vertically */
   
    align-items: center; /* Center the cards horizontally */
    gap: 20px; /* Add spacing between the cards */

}

.project-card {
    display: flex; /* Use Flexbox for layout */
    flex-direction: column; /* Stack content vertically */
    align-items: stretch;
    justify-content: center; /* Center-align vertically */
    background-color: #ffffff; /* Clean white background */
    border-radius: 16px; /* Add rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    padding: 20px; /* Add padding inside the card */
    margin: 20px auto; /* Add spacing between cards */
    max-width: 400px; /* Limit the width for better readability */
    text-align: center; /* Center-align text inside the card */
}

.project-image img {
    width: 100%; 
    height: auto; 
    object-fit: cover; 
    border-radius: 8px; 
    transition: transform 0.3s ease; /* Add a hover effect */
}

.project-card-homepage:hover .project-image img {
    transform: scale(1.05); /* Slight zoom effect on hover */
}

/*hover overlay on homepage*/
.project-image-tile {
    position: absolute; /* Position the content over the image */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex; 
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent black background */
    color: #ffffff; 
    opacity: 0; 
    pointer-events: none; /* Disable interaction by default */
    transition: opacity 0.3s ease; /* Smooth fade-in effect */
    text-align: center; 
    z-index: 1; 
    font-family: "DM Sans", sans-serif;
}

/*font size for the title */
.project-image-tile h3 {
    font-size: 50px; 
    font-weight: bold; 
    color: #ffffff; 
    margin: 0;
}

.project-image-tile p {
    font-size: 30px; /* Adjust font size for the description */
    line-height: 1.6; /* Improve readability */
    margin: 0; /* Remove default margins */
    color: #ffffff; /* Ensure the description is white */
}

.project-card:hover .project-image-tile {
    opacity: 1; /* Show the content on hover */
    pointer-events: auto; /* Enable interaction when visible */
}

/*this turns tile into a link*/
.project-card a {
    position: relative; /* Ensure the link is clickable */
    z-index: 2; /* Place the link above the overlay */
    text-decoration: none; /* Remove underline from links */
    color: inherit; /* Inherit text color */
}

.project-image-tile h3, .project-image-tile p {
    z-index: 2; /* Ensure text is above the overlay */
    pointer-events: auto; /* Allow text to be clickable if needed */
}

/*cards used on prototype sub-pages*/
.project-card h2 {
    text-align: left; 
    font-size: 30px; 
    color: #25374f; 
    margin-bottom: 10px;
}

.project-card h3 {
    color: #4e698e;
    margin-left: 15px;
    margin-bottom: 0px;
}
.project-card p, .project-card li {
    color: #000000;
    font-size: 20px;
    margin-left: 15px;
    margin-bottom: 0px;
}

.project-card p {
    margin:0;
}

.project-card strong {
    color:#383e22; 
    font-weight: bold; 
}

.project-text h2 {
    font-size: 24px; /* Adjust font size for the title */
    color: #383e22; /* Title color */
    margin-bottom: 10px; /* Add spacing below the title */
}

.project-text p {
    font-size: 20px; /* Adjust font size for the paragraph */
    line-height: 1.6; /* Improve readability */
    margin: 0; /* Remove default margins */
}
/* GIF Container Styling */

.gif-image {
    width: 100%; /* Ensure the image spans the full width of its container */
    height: auto; /* Maintain aspect ratio */
}

/* User Testing Container */
.user-testing-container {
    display: flex; /* Use Flexbox to align items horizontally */
    justify-content: center; /* Center the images horizontally */
    gap: 20px; /* Add spacing between the images */
    margin: 20px 0; /* Add spacing above and below the container */
}

/* User Testing Item */
.user-testing-item {
    display: flex;
    flex-direction: column; /* Stack the image and caption vertically */
    align-items: center; /* Center-align the content */
    text-align: center; /* Center-align the caption */
}

/* User Testing Image */
.user-testing-image {
    width: 500px; /* Set the desired width */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    
}
.user-testing-image:hover {
    transform: scale(1.05); /* Slightly enlarge the image on hover */

}

/* Image Caption */
.image-caption {
    margin-top: 10px; /* Add spacing above the caption */
    font-family: "DM Sans", sans-serif; /* Consistent font */
    font-size: 16px; /* Adjust font size */
    color: #0D1821; /* Text color */
}

/* Final Design Container */
.final-design-container {
    display: grid; /* Use CSS Grid for layout */
    grid-template-columns: repeat(3, 1fr); /* Create 3 equal columns */
    gap: 20px; /* Add spacing between the columns */
    justify-content: center; /* Center the grid horizontally */
    margin: 20px 0; /* Add spacing above and below the container */
}

/* Final Design Image */
.final-design-image {
    width: 150%; /* Ensure the images fill their grid cells */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Add rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
    transition: transform 0.3s ease; /* Add a hover effect */
}

.final-design-image:hover {
    transform: scale(1.05); /* Slightly enlarge the image on hover */
}

/* Wireframes Container */
.wireframes-container {
    display: grid; /* Use CSS Grid for layout */
    grid-template-columns: repeat(3, 1fr); /* Create 3 equal columns */
    gap: 20px; /* Add spacing between the columns */
    justify-content: center; /* Center the grid horizontally */
    margin: 20px 0; /* Add spacing above and below the container */
}

/* Wireframe Images */
.wireframe-image {
    width: 100%; /* Ensure the images fill their grid cells */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Add rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
    transition: transform 0.3s ease; /* Add a hover effect */
}

.wireframe-image:hover {
    transform: scale(1.05); /* Slightly enlarge the image on hover */
}

/*ABOUT PAGE*/
.about-me {
    display: flex;
    justify-content: space-around;
    padding: 20px;
  }
  
  .card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    padding: 20px;
    text-align: center;
  }
  
  .card-img {
    display: block; /* Ensure the image is treated as a block element */
    margin: 0 auto; /* Center the image horizontally */
    width: 255px; /* Set the desired width */
    height: 255px; /* Set the desired height */
    border-radius: 20%; 
    margin-top: 20px; 
    margin-bottom: 20px; /* Add spacing below the image */
  }

  .card-description {
    font-family: "DM Sans", sans-serif;
    list-style-type: none;
    align-items: center;
  }

  /*Contact Page*/

.connect-card .button-link {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 15px 30px;
    background-color: #BFCC94;
    color: #0D1821;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    border: 2px solid #0D1821;
}

.connect-card .button-link:hover {
    background-color: #9bb34a;
}

/*PROJECT PAGE*/
.wireframe-image {
    width: 100%; /* Ensure the images fill their grid cells */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Add rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
    transition: transform 0.3s ease; /* Add a hover effect */
}

.wireframes-container {
    display: grid; /* Use CSS Grid for layout */
    grid-template-columns: repeat(3, 1fr); /* Create 3 equal columns */
    gap: 20px; /* Add spacing between the columns */
    justify-content: center; /* Center the grid horizontally */
    margin: 20px 0; /* Add spacing above and below the container */
}

.gif-image {
    width: 25%; 
    height: auto; /* Maintain the aspect ratio */
    display: block; 
    margin-left: 50px;
    border-radius: 8px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

/*FOOTER*/

.site-footer {
    background-color: #0D1821; 
    color: #f0f4ef;
    text-align: center; 
    padding: 20px; 
    font-family: "DM Sans", sans-serif; 
    font-size: 15px; 
    position: relative; /* Ensure it stays in the layout flow */
    z-index: 1; /* Ensure it doesn’t overlap other elements */
}

/* Footer Links */
.site-footer a {
    color: #BFCC94; 
    text-decoration: none; 
    font-weight: bold; 
}

.site-footer a:hover {
    color: #9bb34a; 
    border-bottom: none; 
}

.site-footer p {
    margin: 8px 0; 
    padding: 0; 
    line-height: 1.4; 
    color: #f0f4ef; 
}



iframe {
    width: 100%; /* Make the iframe span the full width */
    height: 600px; /* Set a fixed height or adjust as needed */
    border: 1px solid rgba(0, 0, 0, 0.1); 
    border-radius: 8px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}


.carousel {
    position: relative;
    overflow: hidden; /* Keep this to hide slides outside the visible area */
    width: 100%; /* Ensure the carousel spans the full width */
    max-width: 1200px; /* Set a maximum width for larger screens */
    height: auto; /* Allow the height to adjust based on content */
    margin: 0 auto; /* Center the carousel */
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
    z-index: 10;
}

.carousel-button.prev {
    left: 10px;
}

.carousel-button.next {
    right: 10px;
}

.carousel-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Explore Other Projects Section */
.explore-projects {
    text-align: center;
    margin: 40px auto;
    padding: 20px;
    background-color: #f9f9f9; /* Light background for contrast */
    border-top: 2px solid #e0e0e0; /* Subtle border for separation */
}

.explore-projects h2 {
    font-size: 28px;
    color: #0D1821;
    margin-bottom: 20px;
    font-family: "DM Sans", sans-serif;
}

.explore-projects-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Ensure responsiveness */
}

.explore-project-card {
    width: 280px; /* Set a fixed width for the cards */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #ffffff;
}

.explore-project-card:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

.explore-project-image img {
    width: 100%; /* Ensure the image fills the card width */
    height: auto; /* Maintain aspect ratio */
    object-fit: cover;
}

.explore-project-content {
    padding: 15px;
    text-align: center;
}

.explore-project-content h3 {
    font-size: 20px;
    color: #0D1821;
    margin-bottom: 10px;
}

.explore-project-content p {
    font-size: 14px;
    color: #383e22;
}



/* Project Cards (Not Homepage) */
.project-card {
    background-color: #ffffff; 
    border-radius: 8px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    padding: 20px; 
    margin: 20px auto; 
    max-width: 800px; 
    font-family: "DM Sans", sans-serif; 
    color: #0D1821; 
    line-height: 1.6; 
}

.project-card h2 {
    font-size: 28px; 
    color: #25374f; 
    margin-bottom: 15px; 
    text-align: left; 
}

.project-card h3 {
    font-size: 22px; 
    color: #4e698e; 
    margin-bottom: 10px;
    text-align: left; 
}

.project-card p {
    font-size: 18px; /* Standard font size for paragraphs */
    color: #383e22; /* Neutral color for body text */
    margin-bottom: 15px; /* Add spacing below paragraphs */
    text-align: left; /* Align text to the left */
}

.project-card ul {
    margin: 15px 0; /* Add spacing above and below lists */
    padding-left: 20px; /* Indent list items */
    list-style-type: disc; /* Use bullet points */
    text-align: left; /* Ensure the list is left-aligned */
}

.project-card ul li {
    font-size: 18px; 
    color: #383e22; 
    margin-bottom: 10px; 
    text-align: left; 
}

.project-card strong {
    color: #25374f; 
    font-weight: bold; 
}

.project-card img {
    width: 100%; 
    height: auto; 
    border-radius: 8px; 
  
}

.under-title-image {
    display: block; 

    width: 40%; 
    max-width: 400px; 
    height: auto; 
    border-radius: 16px; 
   
    background-color: #ffffff;
    
}

.intro-heading {
    margin-bottom: 0px; 
    padding-bottom: 0px;
    font-size: 30px; 
    padding-left: 40px;
    text-align: left; 
    color: #0D1821; 
}

.intro-text {
    margin-top: 0px; 
    padding-top: 0px;
    padding-left: 40px;

    font-size: 18px; 
    text-align: left;
    color: #0D1821; 
}

/* Responsive Design */
/* Hide hamburger menu on large screens */
@media (min-width: 769px) {
  #menuToggle {
    display: none !important;
  }
}

/* Hide bigscreen menu on small screens */
@media (max-width: 768px) {
  .bigscreen-menu {
    display: none !important;
  }
  #menuToggle {
    display: block !important;
  }

  h1 { /*page heading on small screen*/
        font-size: 25px; 
        padding-left: 20px; 
        text-align: center; 
    }

  header h1 { /*logo size on small screen*/
        font-size: 24px;
        margin: 0;
        align-items: center;
    }
  
    /* "Hi I'm..." */
    .intro-heading{
        font-size: 22px; 
        text-align: center;
    }

    /* Intro text */
    .intro-text {
        font-size: 16px;
        text-align: center;
    }

    .text-block1 h2 { /*card heading on small screen*/
        color: #0D1821;
        font-size: 20px;
        padding-left: 19px;
        text-align: center;
    }

    .text-block1 h3 { /*card subheadings on small screen*/ 
        color: #0D1821;
        font-size: 20px;
        padding-left: 19px;
    }

    .text-block1 p {
        color: #0D1821;
        font-size: 16px;
    }

    /* key feature bullet point test */
    .project-card h3 + ul li {
    font-size: 16px;
    margin-bottom: 6px;
    }

    .project-card-homepage {
        align-items: flex-start;
        padding: 10px;
    }

    .project-card-homepage .project-image-tile {
        text-align: left;
    }

    /*explore more projects section*/
    .explore-project-content h3 {
        font-size: 16px;
    }

    .explore-project-content p {
        font-size: 16px;
    }

}