* {
  padding: 0px;
  margin: 0px;
  font-family: "sans-serif", poppins;
}

/* Navbar */

nav {
  width: 100%;
  height: 12vh;
  background-color: rgb(224, 222, 222);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav1 {
  width: 15%;
  display: flex;
  justify-content: center;
}
.nav1 h1 {
  font-weight: lighter;
  letter-spacing: 3px;
  font-size: 25px;
}
.nav2 {
  width: 45%;
  display: flex;
  justify-content: space-evenly;
}
.nav2 a {
  text-decoration: none;
  color: rgb(123, 121, 121);
  font-size: 18px;
  font-weight: lighter;
  padding: 5px;
  cursor: pointer;
}
.nav2 a:hover {
  box-shadow: 0px 0px 5px turquoise;
}
.nav3 {
  width: 15%;
  display: flex;
  justify-content: space-evenly;
  padding-right: 15px;
}
.nav3 a {
  color: rgb(84, 83, 83);
}
.nav3 i {
  font-size: 20px;
}
.nav3 i:hover {
  color: rgb(46, 200, 184);
}

/* MAIN RESUME CONTENT */

.resume {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

.resume-title {
 width: 100%;
  height: 20vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.resume-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.resume-title p {
  font-size: 1.1rem;
  color: darkgray;
  margin-top: 5px;
}

/* Section Blocks */
section {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  padding: 25px;
  margin-bottom: 30px;
}

section h2 {
  color: rgb(46, 200, 184);
  border-bottom: 2px solid rgb(46, 200, 184);
  padding-bottom: 5px;
  font-size: 22px;
  margin-bottom: 12px;
}

section p,
section li {
  font-size: 17px;
  color: #444;
  line-height: 1.6;
}

section ul {
  margin: 10px 0 0 25px;
}

section ul li {
  margin-bottom: 8px;
}


/* Footer */

footer {
  background-color: lightgray;
  width: 100%;
  height: 30vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

footer p {
  font-size: 17px;
  color: gray;
}
footer a {
  text-decoration: none;
}
footer strong {
  color: rgb(51, 184, 168);
}

footer i {
  font-size: 20px;
  background-color: transparent;
  border: 1px solid gray;
  padding: 9px;
  color: gray;
  border-radius: 50%;
}

footer i:hover {
  color: rgb(51, 184, 168);
  border: 1px solid rgb(51, 184, 168);
}

