/* COMMON CSS ACROSS ALL PAGES */
/* BIG STUFF */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    text-align: center;
    /* overflow-x: hidden; */
  }

body {
  background-color: black;
  color: white;
  font-family: 'Courier New', Courier, monospace;
  overflow-x: hidden;
}

.parallax-bg {
  position: fixed; /* Keeps background in place */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding: 60vh;
  /* margin-bottom: 100vh; */
  background-image: url('../images/hexagon.jpg');
  background-size: cover;
  background-position: center;
  /* background-repeat: repeat; */
  z-index: -1; /* Keeps it behind content */
  background-attachment: scroll;
  /* overflow-x: hidden; */
}


footer {
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
    background-attachment: scroll;
    /* background-position: 0% 0%; */
    position: fixed;
    bottom: 0;
    left: 0;
    text-align: left;
    width: 100%;
  }

  a {
    text-decoration: none;
  }
  
  li {
    list-style: none;
  }

  header {
    position: absolute;
    left: 0; 
    right: 0;
    top: 50%;
    margin-inline: auto; 
    width: fit-content;
    text-align: center;
    font-size: 5vw;
    display: none;
  }

/* NAVBAR STYLING STARTS */

.typing-container {
  display: flex;
  margin-top: 20px;
  min-height: 4vw;
}

#text {
  font-size: 2vw;
}

.cursor {
  display: inline-block;
  width: 5px;
  height: 2vw;
  background-color: white;
  margin-left: 5px;
  animation: blink 0.8s infinite;
}
@keyframes blink {
  50% { opacity: 0; }
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    /* margin-top: 20px; */
  }
  
  .nav-links a {
    color: white;
    display: block;
    padding: 5px 14px;
  }
  
  /* NAVBAR MENU */
  .menu {
    display: flex;
    gap: 1em;
    font-size: 30px;
    z-index: 1;
    /* margin-top: 20px; */
  }
  
  .menu li:hover {
    background-color: green;
    border-radius: 5px;
    transition: 0.3s ease;
  }
  
  .menu li {
    display: block;
  }
  
  /* DROPDOWN MENU */
  .projects {
    position: relative;
    padding: 5px 14px;
  }

  .turnButtonToText {
    border: none;
    background-color: inherit;
    color: white;
    font-family: 'Courier New', Courier, monospace;
    font-size: 30px;
    cursor: pointer;
    width: 100%;
    /* padding: 5px 14px; */
    /* display: inline-block; */
  }
  
  .dropdown {
    background-color: green;
    position: absolute; /*WITH RESPECT TO PARENT*/
    display: none;
    flex-direction: column;
    border-radius: 8px;
    top: 44px;
    z-index: 1;
    left: calc(50% - 195px);
  }
  
  .dropdown li + li {
    margin-top: 10px;
  }
  
  .dropdown li {
    padding: 0.5em 1em;
    width: 13em;
    text-align: center;
  }
  
  .dropdown li:hover {
    background-color: #4c9e9e;
  }
  
  /* .projects:hover .dropdown {
    display: block;
  } */

  /* RESPONSIVE NAVBAR MENU STARTS */

/* CHECKBOX HACK */

input[type=checkbox] {
    display: none;
  } 
  
  /* HAMBURGER MENU */
  .hamburger {
    display: none;
    font-size: 36px;
    user-select: none;
  }
  
  /* APPLYING MEDIA QUERIES */
  @media (max-width: 1600px) {
   .menu {
      display:none;
      position: absolute;
      right: 0;
      left: 0;
      text-align: center;
      padding: 16px 0;
      background-color: green;
      height: 100vh;
      /* font-size: 3vw; */
    }
  
    .menu li:hover {
      display: block;
      background-color:black;
      transition: 0.3s ease;
    }
  
    .menu li + li {
      margin-top: 12px;
    }
  
    input[type=checkbox]:checked ~ .menu {
      display: block;
    }
  
    .hamburger {
      display: block;
      padding-left: 5px;
      padding-right: 5px;
      cursor: pointer;
    }

    .hamburger:hover {
      background: rgba(190, 190, 190, 0.25);
      /* background-size: 100px 100px; */
      /* padding-left: 20%; */
      border-radius: 10px;
      /* margin: 5%; */
    }
  
    .dropdown {
        position:absolute;
        left: calc(50% - 195px);
        top: 44px;
        background-color: black;
    }
  
    .dropdown li:hover {
      background-color: #4c9e9e;
    }

    #text {
      font-size: 1.5rem;
    }
    .cursor {
      height: 1.5rem;
    }
  }

/* INDEX PAGE CSS */

#indexBody {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

}

#name {
  margin: 5%;
  font-size: 2.5rem;
}

#about {
  /* width: 40%; */
  margin-left: 25%;
  margin-right: 25%;
}

.aboutText {
  font-size: 1.25rem;
  text-align: center;
  width: 100%;
  display: inline-block;
  line-height: 0.75; /* Increase space between lines */
}

.aboutText::after {
  content: "";
  display: inline-block;
  width: 100%;
}

#me {
  /* max-width: 10%; */
  height: auto;
  margin-top: 5%;
  /* scale: 40%; */
  /* height: auto; */
}

#me img {
  width: 200px;
  height: auto;
  /* height: 40%; */
  margin-top: 5%;
  margin-bottom: 5%;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 5px 5px 10px 2px rgb(0 0 0 1);
}

/* SKILLS SECTION CSS */

.sectionHeader {
  line-height: 0.5;
  text-align: center;
  font-size: 2rem;
  margin-top: 5%;
}
.sectionHeader span {
  display: inline-block;
  position: relative;
}
.sectionHeader span:before,
.sectionHeader span:after {
  content: "";
  position: absolute;
  height: 100%;
  border-bottom: 1px solid white;
  border-top: 1px solid white;
  top: 0;
  width: 100vw;
}
.sectionHeader span:before {
  right: 100%;
  margin-right: 15px;
}
.sectionHeader span:after {
  left: 100%;
  margin-left: 15px;
}

#skillContainer {
  display: flex;
  gap: 20px; /* Space between boxes */
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
}

.skill {
  width: 400px;
  height: 600px;
  background-color: green;
  /* border: 2px solid #ddd; */
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 1);
  border-radius: 20px;
  margin-top: 10%;
  margin-bottom: 5%;
  font-weight: bold;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  color: white;
  text-align: center;
}

.skill h1 {
  margin-top: 5%;
  font-size: 1.25rem;
}

.skill h2 {
  font-size: 1.25rem;
}

.skill svg {
  width: 15%;
  max-width: 100%;  /* Ensures responsiveness */
  height: auto;  /* Maintains aspect ratio */
  margin-top: 5%;  /* Removes extra margins */
  color:black;
}

.skill p {
  margin: 5% 10% 5% 10%;
  text-align: center;
  color: #c0b3b3;
  font-size: 1rem;
}

.skill ul {
  margin-top: 5%;
  /* margin: 5% 10% 10% 10%; */
  color: #c0b3b3;
  font-size: 1rem;
}

/* PROJECT SECTION CSS */

#projectContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#projectContainer p {
  margin-top: 5%;
}

.project {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 5% 20% 5% 20%;
  border-radius: 20px;
}

.project img {
  border-radius: 20%;
}

.biggerDisplayProjectImage {
  display: flex;
}

.mobileProjectImage {
  display: none;
}

.projectText {
  margin-top: 0;
  margin-left: 5%;
  margin-right: 10%;
  padding: 5%;
  color: white;
  background-color: green;
  text-align: center;
  border-radius: 20px;
}

.projectText a {
  text-decoration: none;
  color:greenyellow;
}

.projectText a:hover {
  background-color: black;
  padding: 1%;
  border-radius: 20px;
  opacity: 0.8;
  transition: 0.2s ease;
  /* transform: scale(1.1); */
}

/* WORKING TOGETHER SECTION CSS */

#workingTogetherSection {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: green;
  margin-top: 5%;
  margin-bottom: 5%;
  padding: 3%;
  width: 100%;
}

#workingTogetherSection h1 {
  margin-bottom: 2%;
}

#workingTogetherSection button {
  background: black;
  border: none;
  padding: 15px 30px;
  font-size: 18px;
  color: white;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

#workingTogetherSection button:hover {
  transform: scale(1.05);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
}

#workingTogetherSection button:active {
  transform: scale(0.98);
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
}

/* EXPERIENCE SECTION CSS */

.section-title {
  text-align: center;
  margin: 40px 0;
  font-size: 2.5rem;
  color: #2c3e50;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #3498db;
  margin: 20px auto;
  border-radius: 2px;
}

/* Timeline Styles */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  margin-top: 10%;
  margin-bottom: 10%;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: #3498db;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  border-radius: 2px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
  margin-bottom: 30px;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: white;
  border: 4px solid #3498db;
  border-radius: 50%;
  top: 15px;
  z-index: 1;
}

.timeline-dot {
  display: none; /* We're using ::after for the dot */
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-item:nth-child(odd)::after {
  right: -14px;
}

.timeline-item:nth-child(even)::after {
  left: -14px;
}

.timeline-content {
  padding: 20px 30px;
  background-color: green;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.timeline-content h3 {
  margin: 0 0 5px 0;
  color: white;
  font-size: 1.3rem;
}

.timeline-content h4 {
  margin: 0 0 15px 0;
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
}

.timeline-content p {
  margin: 0;
  color: rgb(207, 180, 180);
  font-size: 1rem;
}

.timeline-date {
  position: absolute;
  width: 120px;
  background: green;
  color: white;
  text-align: center;
  padding: 8px 0;
  border-radius: 20px;
  font-weight: bold;
  font-size: 1rem;
}

.timeline-item:nth-child(odd) .timeline-date {
  right: -150px;
  top: 15px;
}

.timeline-item:nth-child(even) .timeline-date {
  left: -150px;
  top: 15px;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
  .timeline::after {
      left: 31px;
  }
  
  .timeline-item {
      width: 100%;
      padding-left: 70px;
      padding-right: 25px;
  }
  
  .timeline-item:nth-child(even) {
      left: 0;
  }
  
  .timeline-item::after {
      left: 19px;
  }
  
  .timeline-item:nth-child(odd)::after,
  .timeline-item:nth-child(even)::after {
      left: -3px;
      /* right:  */
  }
  
  .timeline-item:nth-child(odd) .timeline-date,
  .timeline-item:nth-child(even) .timeline-date {
      top: -35px;
      left: 70px;
  }
  .sectionHeader span:before,
  .sectionHeader span:after {
    width: 200px;
  }
  .parallax-bg {
    background-position: right;
  }
}

/* ACHIEVEMENT SECTION CSS */

#achievementContainer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  /* max-width: 2100px; */
  margin: auto;
}

.achievementRow {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 5%;
  margin-bottom: 5%;
  justify-content: center;
}

.achievement {
  width: 400px;
  height: 420px;
  background-color: green;
  /* border: 2px solid #ddd; */
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 1);
  border-radius: 20px;
  font-weight: bold;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  color: white;
  text-align: center;
}

.achievement h1 {
  /* margin-top: 5%; */
  font-size: 1.15rem;
}

.achievement svg {
  width: 15%;
  max-width: 100%;  /* Ensures responsiveness */
  height: auto;  /* Maintains aspect ratio */
  margin-top: 15%;  /* Removes extra margins */
  margin-bottom: 10%;
  color:black;
}

.achievement img {
  width: 15%;
  scale: 1.35;
  max-width: 100%;  /* Ensures responsiveness */
  height: auto;  /* Maintains aspect ratio */
  margin-top: 12.5%;  /* Removes extra margins */
  margin-bottom: 12.5%;
  color:black;
}

.achievement p {
  margin: 10% 10% 5% 10%;
  text-align: center;
  color: #c0b3b3;
  font-size: 1rem;
}

.achievement a {
  text-decoration: none;
  text-align: none;
  color:greenyellow;
  padding: 10%;
  border-radius: 20px;
  font-size: 0.9rem;
}

.achievement a:hover {
  background-color: black;
  opacity: 0.8;
  transition: 0.2s ease;
  /* transform: scale(1.1); */
}

#verifyDirect {
  width: 100%;
  text-align: center;
}

#verifyDirect a {
  padding: 2%;
}

#showMoreContent {
  display: none;
}

#showMoreButton {
  border: none;
  border-radius: 10px;
  color: rgb(24, 24, 24);
  background-color:greenyellow;
  font-size: 0.9rem;
  margin-left: 40%;
  margin-right: 40%;
  margin-bottom: 3%;
  padding: 1%;
  /* width: 10%; */
}

#showMoreButton:hover {
  color:rgb(115, 170, 31);
  background-color: black;
  cursor: pointer;
}

/* END FOOTER SECTION CSS */

#endSection {
  background-color: green;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2%;
  width: 100%;
}

#endLinksContainer {
  width: 100%;
  height: 100%;
  padding: 2%;
}

.endLinks {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 2em;
  text-decoration: none;
  color: white;
}

.endLinks a {
  color: white;
  padding: 10%;
  border-radius: 20px;
}

.endLinks a:hover {
  background-color: black;
  opacity: 0.8;
  transition: 0.2s ease;
}

#contactIcons {
  /* margin-top: 50px; */
  margin-left: 30%;
  margin-right: 30%;
  gap: 2em;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.icons:hover {
  opacity: 0.8;
  transition: 0.2s ease;
  transform: scale(1.25);
}

/* INDEX PAGE CSS MOBILE COMPATIBILITY */

@media (max-width: 1400px) {
  #skillContainer {
    flex-direction: column;
  }

  .skill {
    width: 400px;
  }

  .project {
    flex-direction: column;
    margin-left: 15%;
    margin-right: 15%;
  }

  .project img {
    margin-top: 10%;
    margin-bottom: 10%;
  }

  .projectText {
    margin-right: 0;
    margin-left: 0;
  }

  .biggerDisplayProjectImage {
    display: none;
  }

  .mobileProjectImage {
    display: flex;
  }

  #workingTogetherSection h1 {
    margin-bottom: 5%;
    font-size: 1rem;
  }

  #endSection h1 {
    margin-top: 20px;
  }

  .endLinks {
    margin-top: 20px;
    flex-direction: column;
  }

  .endLinks a {
    color: white;
    padding: 2%;
    border-radius: 20px;
  }
}

@media (max-width: 1700px) {
  #achievementContainer {
    flex-direction: column;
  }
}

/* ANIME MUSIC QUIZ PAGE CSS */

.audio-container {
  text-align: center;
}

#musicBody {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 80vh;
    margin: 0;
}

 /* Settings Menu Styling */
 .settings-menu {
  background-color: #333; /* Dark gray for the menu */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
  width: 300px;
  text-align: center;
}

.settings-menu h2 {
  margin-bottom: 20px;
}

.settings-menu label {
  display: block;
  margin: 10px;
  font-weight: bold;
}

.settings-menu input[type="text"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-top: 5px;
}

.checkbox-container {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.checkbox-container label {
  margin: 0 15px;
  display: flex;
  align-items: center;
}

.settings-menu input[type="checkbox"] {
  margin-right: 5px;
  transform: scale(1.2); /* Slightly larger checkboxes */
}

.settings-menu input[type="checkbox"] {
  margin-right: 10px;
  display: flex;
}

.settings-menu .slider {
  width: 100%;
  /* margin-top: 10px; */
}

/* Button Styling */
.settings-menu button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 20px;
  transition: background-color 0.3s, transform 0.2s;
}

.settings-menu button:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}

.settings-menu button:active {
  background-color: #003f7f;
}

.error-message {
  color: #ff4d4d; /* Red color for error message */
  font-weight: bold;
  margin-top: 20px;
}

.invalid-input {
  border-color: #ff4d4d !important;
  color: #ff4d4d !important;
}

#game {
  display: none;
  justify-content: center;
  flex-direction: column;
}

#guess {
  margin-top: 5%;
  width: 100%;
  padding: 12px 20px;
  font-size: 16px;
  border: 2px solid #ccc;
  border-radius: 8px;
  background-color: #f9f9f9;
  color: #333;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box; /* Ensures padding and border don't affect width */
}

#animeTheme {
  display: none;
}

.timer-container {
  position: relative;
  text-align: center;
  background-color: #333;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.question-box {
  background-color: #333; /* Blue background for the question box */
  color: white;
  font-size: 0.9vw;
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 20px; /* Space between the question box and timer */
  display: flex; /* Flexbox for vertical and horizontal centering */
  justify-content: center; /* Centers content horizontally */
  align-items: center; /* Centers content vertically */
  min-width: 230px;
  /* max-width: 230px; */
  height: 60px; /* Set height to ensure it's centered vertically */
  overflow: hidden;
  white-space: nowrap;
}

.timer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1vw;
  font-weight: bold;
  letter-spacing: 2px;
}

.timer span {
  /* background-color: #007bff; */
  padding: 10px 20px;
  border-radius: 5px;
  margin: 0 5px;
  min-width: 80px;
  display: inline-block;
}

.label {
  font-size: 18px;
  color: #bbb;
  margin-top: 10px;
}

/* SVG Circle Progress */
.circle-container {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto;
}

.circle-container svg {
  transform: rotate(-90deg); /* Rotates progress bar so it starts from the top */
}

.circle {
  width: 150px;
  height: 150px;
}

.circle-background {
  fill: none;
  stroke: #444;
  stroke-width: 10;
}

.circle-progress {
  fill: none;
  stroke: #007bff;
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 345; /* Circumference of the circle */
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1s linear;
}

/* The Modal Background */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

/* The Modal Content */
.modal-content {
  color: black;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  width: 350px;
}

/* Buttons */
.btn {
  padding: 10px 20px;
  margin: 15px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
  transition: 0.3s;
}

.btn-yes {
  background-color: #28a745;
  color: white;
}

.btn-yes:hover {
  background-color: #218838;
}

.btn-no {
  background-color: #dc3545;
  color: white;
}

.btn-no:hover {
  background-color: #c82333;
}

.autocomplete-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 10px;
  /* border-radius: 4px; */
}
.autocomplete-list {
  position: absolute;
  top: 60px;
  /* border: 1px solid #ccc; */
  background: white;
  color: black;
  max-height: 150px;
  overflow-y: auto;
  width: 100%;
  display: none;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.2s ease-in-out;
}
.autocomplete-list div {
  padding: 10px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.2s, color 0.2s;
}
.autocomplete-list div:hover {
  background-color: #007bff; /* Modern blue hover */
  color: white;
}

.autocomplete-list div:active {
  background-color: #0056b3; /* Darker blue when clicked */
  color: white;
}

/* Scrollbar styling (for Webkit browsers) */
.autocomplete-list::-webkit-scrollbar {
  width: 6px;
}

.autocomplete-list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 8px;
}

.autocomplete-list::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 8px;
}

.autocomplete-list::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.autocomplete-item {
  padding: 10px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.2s, color 0.2s;
}

.autocomplete-item:hover {
  background-color: #007bff;
  color: white;
}

.autocomplete-item.highlight {
  background-color: #007bff;
  color: white;
}

#autocomplete {
  color: black;
  font-size: 0.9vw;
  /* padding: 15px 0px 10px 0px; */
  margin-bottom: 20px; /* Space between the question box and timer */
  display: flex; /* Flexbox for vertical and horizontal centering */
  justify-content: center; /* Centers content horizontally */
  align-items: center; /* Centers content vertically */
  /* min-width: 230px */
  /* max-width: 230px; */
  height: 60px; /* Set height to ensure it's centered vertically */
  overflow: hidden;
  white-space: nowrap;
  text-align: center;
}

#autocomplete:disabled {
  background-color: white;
}

#animeTitle {
  display: none;
}

/* *** CREDENTIALS CSS STYLING *** */

.text a:visited {
  color: #ab00ab; /* Color for visited links */
}

.masonry {
  column-count: 3; /* Number of columns */
  column-gap: 15px; /* Space between columns */
  margin: 5%;
}

.masonry .masonry-item {
  display: inline-block;
  margin-bottom: 15px;
  text-align: center; /* Center the text below */
}

.masonry img {
  width: 100%; /* Ensures images take full column width */
  margin-bottom: 15px; /* Space between images */
  border-radius: 8px;
  display: block; /* Removes unwanted gaps */
}

.masonry .text {
  margin-top: 10px; /* Space between image and text */
  font-size: 1rem;
  color: white; /* Text color */
  word-wrap: break-word; /* Prevents long words from overflowing */
}
