* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

.active {
  color: black;
  font-size: 1.2rem;
}

.knewave-regular {
  font-family: "Knewave", system-ui;
  font-weight: 400;
  font-style: normal;
}

.project_title {
  font-family: "Knewave", system-ui;
  font-weight: 400;
  font-style: normal;
  text-align: center;
}

.delicious-handrawn-regular {
  font-family: "Delicious Handrawn", cursive;
  font-weight: 400;
  font-style: normal;
}

nav {
  background-color: rgba(255, 140, 105, 0.7);
  flex: 5 1 500px;
  /* salmon color */
  font-size: 1.1rem;
}
nav ul {
  display: flex;
}
nav ul li {
  list-style-type: none;
  margin: 1rem;
}
nav ul li a {
  color: antiquewhite;
  text-decoration: none;
  transition: all 0.2s ease;
}
nav ul li a:hover {
  color: black;
  font-size: 1.2rem;
}

main .main-area {
  display: flex;
  flex-wrap: wrap;
  min-height: 70vh;
  background-color: white;
  justify-content: center;
  align-items: center;
}
main .info {
  flex-basis: 450px;
}
main .info h1 {
  font-size: 3.5rem;
}
main .info h2 {
  font-size: 1rem;
}
main .photo {
  flex-basis: 450px;
}
main .photo img {
  width: 75%;
}
main .name {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 50vh;
}
main .personality {
  flex-basis: 550px;
  padding-left: 27%;
  align-items: center;
}
main .descrip {
  flex-basis: 450px;
  padding-left: 10%;
  align-items: center;
}
main .photo_button {
  display: flex;
  flex-basis: 350px;
  flex-wrap: wrap;
  cursor: pointer;
  position: relative;
  text-decoration: none;
}
main .project_intro h1 {
  text-align: center;
}
main .project_intro p {
  text-align: justify;
}
main .project_intro a {
  display: inline;
}
main section.project-circles {
  padding: 1rem 1rem;
}
main section.project-circles h3 {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2rem;
  text-align: center;
  margin: 0 auto;
  border-bottom: 3px rgba(255, 140, 105, 0.7) solid;
}
main section.project-circles div.circles-area {
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
main section.project-circles div.circles-area div.circle {
  flex: 0 1 250px;
  padding: 1rem;
  display: flex;
}
main section.project-circles div.circles-area div.circle a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  text-decoration: none;
  color: black;
}
main section.project-circles div.circles-area div.circle a img {
  width: 80%;
  flex: 0 1 200px;
  padding: 0.2rem;
  transition: all 0.1s ease-in;
}
main section.project-circles div.circles-area div.circle a img:hover {
  border: 3px solid rgb(245, 93, 76);
}
main div.image-display {
  display: flex;
  flex: wrap;
  justify-content: center;
  align-items: center;
}
main div.image-display section.project_image {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 500px;
}
main div.image-display section.project_image img {
  padding: 2rem 1rem;
  width: 80%;
  display: block;
}
main div.image-display section.project_image button {
  font-size: 30px;
}
main div.image-display section.project_image button:hover {
  background: rgba(0, 0, 0, 0.8);
  color: white;
}

footer {
  padding: 2rem 1rem;
  text-align: center;
  padding: 10px;
  background-color: rgba(255, 140, 105, 0.7);
  color: white;
  font-size: 1.02rem;
}

section.About_web {
  align-items: center;
  justify-content: center;
}
section.resume {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding-left: 30px;
}
section.resume ul {
  list-style-position: outside;
  padding-left: 50px;
  padding-top: 10px;
}
section.resume th {
  font-size: 20px;
}

.button_image {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  transition: opacity 0.3s ease-in-out;
}

.photo_descrip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  background-color: rgba(0, 0, 0, 0);
  /* Initially no background */
  border-radius: 10px;
  opacity: 0;
  /* Hidden initially */
  transition: opacity 0.3s ease-in-out;
  z-index: 1;
  /* Appear above the photo */
}

.photo_button:hover .button_image {
  opacity: 0.3;
  /* Transparent on hover */
}
.photo_button:hover .photo_descrip {
  opacity: 1;
  /* Visible on hover */
  background-color: rgba(0, 0, 0, 0.5);
}
.photo_button div {
  flex: 1 1 350px;
}

.project_intro p {
  padding: 0.1rem 1rem;
}

.project_demo {
  text-align: center;
  align-content: center;
}

.back_button {
  display: inline-block;
  padding: 10px 20px;
  margin-left: 10px;
  font-size: 16px;
  color: #fff;
  background-color: rgb(245, 93, 76);
  border: none;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
}
.back_button:hover {
  background-color: #a9023f;
}/*# sourceMappingURL=style.css.map */