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

body {
  background-image: url("background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.navbar {
  margin-right: -10px;
  position: sticky;
  top: 0;
  width: 100%;
  height: 100px;
  z-index: 999;
  background-color: #2666a2;
  transition: all 0.3s ease-in-out;
}
.navbar ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 20px;
  background-color: #2666a2;
}
@media (max-width: 600px) {
  .navbar ul {
    flex-direction: column;
    align-items: center;
    padding: 0;
  }
}
.navbar ul li {
  margin: 0 10px;
}
.navbar ul li a {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  padding: 7px 8px;
  border-right: 2px solid rgb(244, 244, 245);
}
.navbar ul li a:hover {
  background-color: rgb(13.775, 36.975, 58.725);
  color: white;
}
.navbar ul li:last-child a {
  border-right: none;
}
.navbar.shrink {
  height: 70px;
  background-color: rgb(28.31, 75.99, 120.69);
}

.bio {
  margin-left: 10px;
  margin-right: 10px;
}
.bio h1 {
  text-align: center;
  margin-top: 100px;
}
.bio p {
  -webkit-backdrop-filter: saturate(10%) blur(50px);
          backdrop-filter: saturate(10%) blur(50px);
  padding: 15px;
  border-radius: 5px;
  text-align: center;
}

.intro_banner {
  margin-left: 10px;
  margin-right: 10px;
}
.intro_banner--pfp {
  height: 100px;
  border-radius: 50%;
  background-size: cover;
}
.intro_banner--title {
  color: #fff;
  font-size: 40px;
  text-align: center;
}
.intro_banner .intro_bio {
  margin-left: 10px;
  margin-right: 10px;
  color: #fff;
  font-size: 16px;
}
.intro_banner--style {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
@media (max-width: 600px) {
  .intro_banner--style {
    flex-direction: column;
  }
}

.latest-projects {
  margin-left: 10px;
  margin-right: 10px;
  color: #fff;
}
.latest-projects h2 {
  font-size: 28px;
  margin-top: 100px;
  margin-bottom: 25px;
}
.latest-projects h3 {
  font-size: 20px;
}
.latest-projects p {
  margin-left: 15px;
  font-size: 16px;
}
.latest-projects--img1, .latest-projects--img2, .latest-projects--img3 {
  width: auto;
  height: 100px;
  border-radius: 50%;
  margin: 20px;
  background-size: cover;
  background-position: center;
}
.latest-projects--box1, .latest-projects--box2, .latest-projects--box3 {
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-backdrop-filter: blur(50px);
          backdrop-filter: blur(50px);
  border-radius: 10px;
}
@media (max-width: 600px) {
  .latest-projects--box1, .latest-projects--box2, .latest-projects--box3 {
    display: flex;
    flex-direction: column;
  }
}
.latest-projects--button {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  background-color: rgb(24, 36, 53);
  color: #fff;
  padding: 5px 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 15px;
  margin-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
}
.latest-projects--button:hover {
  background-color: rgb(13.775, 36.975, 58.725);
  color: white;
}
.latest-projects--card1:hover, .latest-projects--card2:hover, .latest-projects--card3:hover {
  padding: 1px;
  box-shadow: 0 4px 8px rgba(51, 22, 215, 0.2);
  transition: all 0.3s ease;
  border-radius: 10px;
  background-color: black;
  color: white;
  margin-bottom: 20px;
  padding: 10px;
}

.skills,
.resume,
.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin: 10px;
  border-radius: 10px;
  color: #fff;
  text-align: center;
}
.skills a,
.resume a,
.contact a {
  color: rgb(41, 41, 131);
  text-decoration: none;
}
.skills a:hover,
.resume a:hover,
.contact a:hover {
  text-decoration: underline;
  color: white;
}
.skills h2,
.resume h2,
.contact h2 {
  font-size: 24px;
  margin-bottom: 10px;
}
.skills p,
.resume p,
.contact p {
  font-size: 16px;
  line-height: 1.5;
}

.footer {
  margin-top: 100px;
  text-align: center;
  color: rgb(23, 21, 21);
  padding: 20px;
}/*# sourceMappingURL=main.css.map */
