.summaryRow {
  display: flex;
  justify-content: space-between;
  height: fit-content;
}

.summaryText {
  padding: 20px;
  /*background-color: lightskyblue;*/
  background-image: linear-gradient(to right,lightskyblue, lightcyan);
  width: 70%;
  align-items: center;
}

.currentLink {
  display: grid;
  /*background-color: darkseagreen;*/
  background-image: linear-gradient(to right,lightcyan,darkseagreen);
  width: 30%;
  place-items: center;
}



.navButton {
  border: solid black;
  color: black;
  background-color: whitesmoke;
  border-radius: 15px;
  margin: 10px;
  padding: 10px;
  width: min-content;
}

/* global styles for sizing usefulness and consistency */
h1 {
  font-size: 100px;
}

h2 {
  font-size:50px;
}

h3 {
  font-size:30px;
}

h4 {
  font-size:20px;
}


/* Styles for description images and text blocks */
.descriptionRow {
  display: flex;
  justify-content: space-evenly;
  gap: 5px;
  width: 100%;
  height: 12%;
  background-color: darkseagreen;
}

.descriptionHeading {
  padding: 20px;
  background-color: rgb(4, 160, 160);
  text-align: center;
  color: white;
  margin-bottom: 0px;
}

.descriptionImage {
  float: left;
  width: 20%;
  height: 15%;
  padding: 10px;
}

.descriptionImage img {
  border-radius: 50px;
}

.descriptionText {
  float: left;
  padding: 10px;
  background-color: darkseagreen;
}



/* Styles for project tiles and summary */
.TileRow {
  display: flex;
  justify-content: space-between;
  gap: 5px;  /* Space between items within a row */
  margin-bottom: 0px; /* Space between rows */
  background-color: whitesmoke;
}

.projectItem {
  float: left;
  border: 2px solid black;
  border-radius: 15px;
  margin: 2%;
  width: 30%;
  height: 30%;
  transition: transform 0.3s ease, border-color 0.3s ease;
  background-color: lightskyblue;
}

.projectItem:hover {
  transform: scale(1.1); /* Enlarge on hover */
  border-color: darkseagreen; /* Change border color */
}

.projectItem img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

footer {
  background-color: darkgreen;
  padding: 15px;
  text-align: center;
  color: white;
  margin-top: 250px;
}

.hover-effect:hover {
  color: blue;
  text-decoration: underline;
  cursor: pointer;
}