* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  width: 100%;
  height: 100vh;
  background-image: url("https://i.cdn.newsbytesapp.com/images/l24520250618135653.jpeg");
  background-attachment: fixed;
  background-position: center;
}
.wallpaper {
  width: 100%;
  height: 100vh;
  position: fixed;
  backdrop-filter: blur(5px);
  z-index: -10;
}
.background {
  color: gold;
  width: 100%;
  height: 100vh;
  padding: 40px;
}
#nav {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  background-color: rgba(0, 0, 0, 0.4);
  border: 2px solid gold;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
}
#nav a {
  text-decoration: none;
  color: gold;
  font-size: 2em;
  transition: color 0.3s ease;
}
#nav a:hover {
  color: red;
}
#intro {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 200px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
#intro img {
  width: 300px;
  border-radius: 20px;
  border: 3px solid gold;
}
#intro h3 {
  width: 700px;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 50px;
  border: 3px solid gold;
  text-align: justify;
  border-radius: 20px;
}
#skills,
#contact {
  padding: 40px;
}
#skills h2,
#contact h2 {
  text-align: center;
  font-size: 2em;
}
.skill-container {
  margin-top: 50px;
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: center;
}
.skill-card {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 30px;
  border: 2px solid gold;
  border-radius: 20px;
  width: 160px;
}
.skill-card:hover > img {
  filter: brightness(0) saturate(100%) invert(21%) sepia(68%) saturate(7053%)
    hue-rotate(356deg) brightness(91%) contrast(94%);
}
.skill-card img {
  filter: brightness(0) saturate(100%) invert(95%) sepia(27%) saturate(4302%)
    hue-rotate(326deg) brightness(105%) contrast(105%);
  width: 100px;
  transition: filter 0.3s ease;
}
#experience h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2em;
}
.experience-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 40px;
  gap: 80px;
  margin: 20px;
  padding: 40px;
  flex-wrap: wrap;
  border: 2px solid gold;
  border-radius: 20px;
}
.experience-container img {
  width: 150px;
}
.experience-container p {
  width: 1000px;
}
.intel-color {
  filter: brightness(0) saturate(100%) invert(44%) sepia(73%) saturate(527%)
    hue-rotate(153deg) brightness(114%) contrast(99%);
}
#projects {
  padding: 40px;
}
#projects h2 {
  margin-bottom: 30px;
  text-align: center;
  font-size: 2em;
}
.project-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}
.project-card {
  width: 400px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 2px solid gold;
  border-radius: 20px;
  justify-content: space-between;
  transition: transform 0.3s ease;
}
.project-card:hover {
  transform: scale(95%);
}
.project-card img {
  width: 100%;
  filter: brightness(0) saturate(100%) invert(95%) sepia(27%) saturate(4302%)
    hue-rotate(326deg) brightness(105%) contrast(105%);
}
.project-card h3 {
  border-top: 2px solid gold;
  border-bottom: 2px solid gold;
  padding: 10px 0;
  margin: 20px 0;
  text-align: center;
}
.project-card p {
  text-align: justify;
}
#education {
  padding: 40px;
}
#education h2 {
  text-align: center;
  margin: 30px;
  font-size: 2em;
}
.education-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 100px;
}
.education-container .education-logo {
  width: 380px;
  height: 380px;
  border: 2px solid gold;
  padding: 40px;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.education-logo:hover > .top {
  top: 80px;
}
.education-logo:hover > .bottom {
  bottom: 80px;
}
.education-container .education-logo img {
  width: 250px;
  height: 250px;
}
.education-logo .top,
.education-logo .bottom {
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
}
.education-logo .top {
  top: -100px;
  transition: top 0.3s ease;
}
.education-logo .bottom {
  bottom: -100px;
  transition: bottom 0.3s ease;
}
.education-logo .top h4 {
  font-size: 3em;
}
.education-logo .bottom h5 {
  font-size: 2.7em;
}
