

/* Projects Page Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px; 
  
}
.projects-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;  /* Make it a square */
  object-fit: cover;     
  display: block; 
}



/* General Paragraph Style - For 'About' & 'Blog' Pages */
.paragraph-style a {
  text-decoration: none;
  color: black;

}

.paragraph-style p {
  font-size: 25px;
  margin-left: 25px;
  margin-right: 25px;
  font-family: 'Roboto Mono', monospace;
}

.paragraph-style img {
  width: 350px;       /* make it small */
  height: 350px;      /* make it square */
  object-fit: cover;  /* crop to fill the square without distortion */
  display: block;     /* remove inline spacing */
  margin: 0 auto;     /* center horizontally */
  margin-bottom: 30px;
  border-radius: 10px;
  margin-top: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}





/* Social Icon */

.social-media img {
  width: 40px; 
  filter: drop-shadow(5px 5px 3px rgba(0,0,0,0.2));
  
}
/* LinkedIn Icon - Hover  */
.social-media img:hover {
  transform: scale(1.1) translateY(-1px);
  filter: drop-shadow(7px 7px 3px rgba(0,0,0,0.1));

}
/* LinkedIn Icon - Active */
.social-media img:active {
  transform: scale(0.9) rotate(-5deg);
  filter: drop-shadow(4px 4px 4px rgba(0,0,0,0.3));

}




.profile-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.profile-header img {
  width: 70px;
  height: auto;
}

.text-info h3, .text-info p {
  margin: 0;
}







/* Body */
body {
  background-color: #f4f4f5 
}

  

/* Site Style Class */
.site-style { 
  font-family: 'Roboto Mono', monospace;
  font-size: 25px;
  box-sizing: border-box;
}

.site-style p{ 
  font-family: 'Roboto Mono', monospace;
  font-size: 15px;
  box-sizing: border-box;
}








p {
  margin-top: 10px;
  font-size: 22px;
  line-height: 40px; 
}

.header p { 
    margin-top: 4px;
    font-size: 20px;
    margin-left: 10px;
}


h3 {
    margin-bottom: 1px; /* Reduce space under the heading */
    margin-left: 10px;
 
}


footer p {
  font-size: 15px;
}








.TranscriptLinks li a {
  font-size: 25px;
}
