* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  padding: 1rem;
  overflow-x: hidden;
  font-family: 'Montserrat', sans-serif;
  position: relative;
}
.nav {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 2rem;
}
.navBtns {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.navBtns a {
  text-decoration: none;
  color: black;
}
.navBtns a:hover,
.navBtns a:focus {
  color: #ff6f00;
}
.navBtns i {
  font-size: 18px;
}
.nav .logoText {
  font-size: 24px;
  font-family: initial;
}
.flexCenterColumn {
  display: flex;
  flex-direction: column;
  align-items: center;
}
h1 {
  font-size: 45px;
  text-align: center;
}
.landing {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.skillBox {
  position: absolute;

  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(0, 0, 0, 0.726);
}

.logoText {
  color: #ff6f00;
}
.projectTitle {
  text-align: center;
  font-size: 35px;
  margin-bottom: 5rem;
}
.allProjects {
  display: flex;
  max-width: 600px;
  margin: 0 auto 5rem auto;

  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.082);
  /* flex-direction: column; */
}

.linksContainer {
  display: flex;
  margin-top: 1rem;
  gap: 20px;
}
.projectImg {
  width: 100%;
  max-width: 300px;
  min-width: 150px;
}
.project-details {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
}
.iconUsed {
  font-size: 25px;
}
.iconUsed > p {
  margin-bottom: 5px;
}
.project-details > p {
  margin-top: 2rem;
  margin-bottom: auto;
  padding-inline: 1rem;
}
h2 {
  font-size: 30px;
  text-align: center;
}
.liveLink:hover svg,
.liveLink:focus svg {
  fill: #ff6f00;
}
.codeLink:hover svg,
.codeLink:focus svg {
  fill: #ff6f00;
}
.project1 .projectImg,
.project3 .projectImg {
  order: 1;
}
.project1 .project-details,
.project3 .project-details {
  order: 2;
}

.project2 .projectImg {
  order: 2;
}
.project2 .project-details {
  order: 1;
}

@media (max-width: 550px) {
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 23px;
    margin-top: 10px;
  }
  .project-details {
    padding: 0;
    padding-bottom: 1rem;
  }
  .project-details > p {
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 5px;
  }
  .project-details svg {
    width: 25px;
    height: 25px;
  }
  .iconUsed {
    font-size: 20px;
  }
}


/*# sourceMappingURL=minimalistic.css.map*/