/* ePortfolio.css */


/* Global styles */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: whitesmoke;
  color: black;
  line-height: 1.6;
}

/* header section */
header {
  background-color: lightcyan;
  padding: 60px 20px 0px;
  text-align: center;
  border-bottom: 1px solid lightgray;
}

header h1 {
  font-size: 3.5em;
  margin: 0;
  color: black;
}

header h3 {
  font-weight: normal;
  color: gray;
  margin-top: 5px;
  margin-bottom: 40px;
}

header h2 {
  font-size: 3.2em;
  font-weight: normal;
  color: dimgray;
  margin-top: 60px;
  margin-bottom: 0;
}

nav {
  margin: 0 auto;
  padding: 20px 0;
  font-size: 1.1rem;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  max-width: 1030px;
  gap: 10px;
}

nav a {
  margin: 0 12px;
  color: teal;
  transition: transform 0.2s ease-in-out;
  display: inline-block;
  text-align: center;
  min-width: 120px;
}

nav a:hover {
  transform: scale(1.2);
}

/* Main content area */
main {
  max-width: 900px;
  margin: 40px auto;
  background-color: whitesmoke;
  color: black;
}

main h2 {
  font-size: 1.8em;
  margin-top: 40px;
  color: black;
  padding-bottom: 8px;
}

a {
  color: dodgerblue;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  padding-left: 20px;
}

li {
  margin-bottom: 10px;
}

.section {
  display: none;
}

.section.active {
  display: block;
}



img {
  border-radius: 10px;
  display: flex;
  justify-content: center;
  margin: auto;
}

.animal-list-image-stack {
  display: flex;
  justify-content: center;
  gap: 10px;
}


.springboot-image-stack {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap:  wrap;
  gap: 10px;
}

.springboot-image-stack img {
  width: 49%;
}

.original-screenshot {
  width: 100%;
  max-width: 500px;
  display: block;
  margin: 20px auto;
}

.animal-list-screenshot {
  width: 100%;
  max-width: 500px;
  height: 100%;
  max-height: 600px;
  display: block;
  margin: 20px auto;
}

.mobile-animal-list-screenshot {
  height: 100%;
  max-height: 500px;
}

p {
  margin-top: 25px;
}

.home-screenshot {
  display: flex;
  justify-content: center;
  margin: auto;
  width: 70%;
  height: 70%;
}
