* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}

/* make nav bar option being selected with a smooth scroll effect */
html {
  scroll-behavior: smooth;
}

/* Section navbar */
#navbar nav {
  background-color: rgb(236, 235, 235);
  display: flex;
  justify-content: space-around;
  list-style: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.nav-logo {
  display: flex;
  align-items: center;
  margin: 20px 30px;
}

#navbar ul {
  list-style: none;
  display: flex;
  align-items: center;
}

#navbar ul a {
  margin: 10px 20px;
  text-decoration: none;
  font-size: 20px;
  margin: 0px 30px;
}

#navbar a {
  color: black;
}

#navbar a:hover {
  text-shadow: 3px 3px 4px rgb(255, 255, 255);
}
/* End of Section navbar */

/* Section Intro */
#intro {
  position: relative;
  min-height: 100vh;
  margin-top: 50px;
}

.intro-content {
  position: absolute;
  top: 15em;
  left: 20em;
}

.intro-content .first-P,
.second-P {
  font-size: 5em;
  margin-bottom: 10px;
}

.intro-content .third-P {
  font-size: 50px;
}

.intro-content .cvButton {
  margin: 20px 0px;
  font-size: 30px;
  text-decoration: none;
  color: white;
  padding: 10px 30px;
  border-radius: 10px;
  border: none;
  background-color: red;
  width: 250px;
  transition: 0.15s ease-in-out;
  display: inline-block;
}

.intro-content .cvButton:hover {
  background-color: crimson;
  color: black;
  box-shadow: 0px 3px 5px rgb(75, 75, 75);
}

.intro-content button:active {
  background-color: rgb(240, 61, 61);
  color: rgb(255, 255, 255);
  box-shadow: none;
}

.intro-content img {
  width: 60px;
  margin-right: 15px;
}
/* End of section Intro */

/* Section About */
#about {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-content {
  display: flex;
  justify-content: center;
  height: 40em;
}

.aboutIMG img {
  border: 2px rgb(0, 0, 0) solid;
  border-radius: 200px;
}

.about-intro {
  width: 900px;
  margin-left: 5em;
}

.about-intro h1 {
  font-size: 4em;
}

.about-intro p {
  font-size: 2em;
}

.about-showcase {
  margin-top: 20px;
}

.about-showcase a {
  font-size: 25px;
  text-decoration: none;
  color: rgb(196, 50, 50);
}

.about-showcase .about-showcaseExperience,
.about-showcaseEducation {
  margin-left: 50px;
}

.about-showcase .activated {
  text-decoration: underline;
}

#about-showcase-JS {
  height: 300px;
}

#skills-showcase-JS ul {
  list-style: none;
  margin-top: 30px;
  font-size: 20px;
}

#skills-showcase-JS li {
  margin-top: 10px;
}

#experience-showcase-JS ul {
  list-style: none;
  margin-top: 30px;
  font-size: 20px;
}

#experience-showcase-JS li {
  margin-top: 10px;
}

#education-showcase-JS ul {
  list-style: none;
  margin-top: 30px;
  font-size: 20px;
}

#education-showcase-JS li {
  margin-top: 10px;
}

.about-showcase-JS .skills-content-animation ul li,
.experience-content-animation ul li,
.education-content-animation ul li {
  animation: popUpContent 0.8s ease-out;
}

@keyframes popUpContent {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* End of section About */

/* Services section */
#services {
  min-height: 100vh;
}

.services-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.services-content h1 {
  font-size: 4em;
  display: flex;
  justify-content: center;
  margin-top: 150px;
}

.services-showcase {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.services-card {
  padding: 30px;
  margin: 20px;
  width: 1000px;
  background-color: black;
  color: white;
  border-radius: 15px;
  height: 350px;
  width: 100;
  transition: 0.2s ease-in-out;
}

.services-card h3 {
  font-size: 2em;
}

.services-card:hover {
  background-color: red;
  color: black;
  box-shadow: 0px 10px 10px rgb(170, 35, 35);
  transform: translateY(-5px);
}

.services-card img,
.services-card h3,
.services-card p {
  margin-bottom: 20px;
  text-decoration: none;
}

.services-card img {
  height: 70px;
  width: 70px;
  border-radius: 50%;
}
/* End of Services section */

/* Project section */
#work {
  min-height: 100vh;
}

.project-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.project-content h1 {
  font-size: 4em;
  margin-top: 150px;
}

.project-showcase {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.project-1 {
  height: 500px;
  width: 500px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid black;
  box-shadow: 10px 10px 15px black;
  color: rgb(245, 222, 179);
}

.project-1 img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.project-1 .work-icon {
  width: 50px;
  height: 50px;
  margin-top: 20px;
}

.project-1 .project-Layer {
  height: 0%;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.project-1:hover img {
  transform: scale(1.1);
}

.project-1:hover .project-Layer {
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transition: height 0.7s ease;
}

/* End of Project section */

/* Contact section */
#contact {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-content {
  margin: 6em 0em;
}

.contact-details {
  background-color: rgb(221, 218, 218);
  padding: 50px 70px;
  border-radius: 10px 10px 0px 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.contact-details h1 {
  font-size: 4em;
  margin-bottom: 20px;
}

.contact-details .contact-info {
  display: flex;
  align-items: center;
}

.contact-details a{
  width: 40px;
  margin-right: 10px;
}

.contact-details img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.contact-details p {
  font-size: 20px;
}

.contact-details button {
  width: 250px;
  font-size: 20px;
  margin: 40px 0px;
  padding: 10px 30px 10px 30px;
  border: none;
  border-radius: 10px;
  background-color: rgb(240, 61, 61);
  color: white;
  transition: all ease-in-out 0.2s;
}

.contact-details button:hover {
  background-color: crimson;
  color: black;
  box-shadow: 0px 3px 5px rgb(75, 75, 75);
}

.contact-details button:active {
  background-color: rgb(240, 61, 61);
  color: rgb(255, 255, 255);
  box-shadow: none;
}

.contact-form {
  background-color: rgb(201, 199, 199);
  padding: 50px 70px;
  border-radius: 0px 0px 10px 10px;
}

.contact-form input {
  font-size: 15px;
  width: 50em;
  height: 3em;
  padding: 10px;
  margin-bottom: 20px;
  border: none;
  border-bottom: 2px solid rgb(255, 255, 255);
  color: rgb(255, 255, 255);
  background-color: transparent;
}

.contact-form input::placeholder {
  color: white;
}

.contact-form input:focus {
  outline: none;
}

.contact-form textarea {
  font-size: 15px;
  width: 50em;
  height: 20em;
  padding: 10px;
  resize: none;
  border: none;
  border-bottom: 2px solid rgb(255, 255, 255);
  background-color: transparent;
  color: rgb(255, 255, 255);
}

.contact-form textarea::placeholder {
  color: white;
}

.contact-form textarea:focus {
  outline: none;
}

.contact-form button {
  font-size: 20px;
  padding: 10px 30px;
  margin-top: 25px;
  border: none;
  border-radius: 10px;
  background-color: rgb(240, 61, 61);
  color: white;
  transition: 0.15s ease-in-out;
}

.contact-form button:hover {
  background-color: crimson;
  color: black;
  box-shadow: 0px 3px 5px rgb(75, 75, 75);
}

.contact-form button:active {
  background-color: rgb(240, 61, 61);
  color: rgb(255, 255, 255);
  box-shadow: none;
}
/* End of Contact section */

/* Footer Section */
.footerContent {
  background-color: rgb(158, 158, 158);
  min-height: 150px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.footerContent p {
  color: rgb(255, 255, 255);
}

.footer-socialMedia {
  margin: 30px;
}

.footer-socialMedia p {
  font-size: 20px;
  color: rgb(255, 255, 255);
}

.footer-socialMedia img {
  margin-top: 10px;
  width: 30px;
}
/* End of Footer Section */
