
/*Portfolio page - image sizing*/
.portfolio-header-image {
  width: 100%;
  display: flex;
  padding: 0px 25px;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
/*Traffic Light image resizing*/
.project-header-image{
  width: 100%;
  display: flex;
  padding: 50px 25px;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
/* Icons */

.right-arrow-icon {
  width: 16px;
  height: 16px;
  margin-top: 1px;
}

.footer-icon {
  width: 30px;
  height: 30px;
}

a.icon-link {
  transition: transform 200ms ease-in-out;
}

a.icon-link:hover {
  cursor: pointer;
  stroke-width: 50;
  margin: 0;
  transform: translate(0px, -10px) scale(1.5);
}

/* Navbar Styling */

.navbar {
  width: 100%;
  padding: 30px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
}

.nav-title-link {
  /*color: black;
  text-decoration: none;*/
  padding: 8px 16px;
  border: 3px solid #141414;
  border-radius: 50px;
  color: black;
  text-decoration: none;
  width: fit-content;
  display: flex;
  gap: 5px;
  align-items: center;
  transition:transform 200ms ease-in-out;
}

.nav-title-link:hover {
  transform:scale(1.3) rotate(1.5deg);
  /*text-decoration: underline;*/
}


/* Small devices (portrait tablets and large phones, 800px and below) */
@media only screen and (max-width: 800px) {
  .navbar {
    padding: 20px 20px;
    background-color: white
  }
}


/* Button Styling */
.next-project{
  text-align: center;
  margin: 5px 0 30px;
}
.next-button{
  margin: 0 auto;
  padding: 8px 50px;
  border: 3px solid #141414;
  border-radius: 50px;
  color: black;
  text-decoration: none;
  width: fit-content;
  display: flex;
  gap: 5px;
  align-items: center;
  transition:transform 200ms ease-in-out;
  font-size: 13px;
  font-weight: 700;
}
.next-button:hover {
  /*text-decoration: underline;
  text-decoration-thickness: 2px;*/
  cursor: pointer;
  transform:scale(1.2);
}
a.button {
  padding: 8px 16px;
  border: 3px solid #141414;
  border-radius: 50px;
  color: black;
  text-decoration: none;
  width: fit-content;
  display: flex;
  gap: 5px;
  align-items: center;
  transition:transform 200ms ease-in-out;
}

a.button:hover {
  /*text-decoration: underline;
  text-decoration-thickness: 2px;*/
  cursor: pointer;
  transform:scale(1.3) rotate(1.5deg);
}


/* Footer Styling */

#footer {
  width: 100%;
  padding: 20px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #e9e9e9;
  text-align: center;
}
.footer-icons {
  display: flex;             /* Align icons horizontally */
  justify-content: center;   /* Center icons horizontally */
  gap: 10px;                 /* Space between icons */
  align-items: center;
  scale: 1.5;
}
.footer-text{
  font-size: 8.5px;
  color: #515151;
}

/* Link Styling */
a.no-underline {
  text-decoration: none;
  color: black
}

a.no-underline:hover {
  text-decoration: underline;
  cursor: pointer;
}

/* Small devices (portrait tablets and large phones, 800px and below) */
@media only screen and (max-width: 800px) {
  #footer {
    padding: 20px 20px;
  }
}