* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
a,
a:visited {
  text-decoration: none;
  color: black;
}
html {
  height: auto;
  scroll-behavior: smooth;
}
body {
  height: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: #976ee7;
}
.navBar {
  z-index: 999;
  position: sticky;
  top: 1rem;
  display: flex;
  justify-content: space-around;
  width: 55%;
}
.navEl {
  font-size: 1.5rem;
  font-weight: 900;
  cursor: pointer;
}
.navEl a:hover {
  color: white;
}
.wrapper {
  width: 55%;
  margin-top: 8rem;
  margin-bottom: 10rem;
  height: auto;
}
.projects {
  height: fit-content;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}
.projectTitle {
  font-weight: 900;
  font-size: 10rem;
  padding-top: 5rem;
}
.projectDesc {
  font-weight: 800;
  color: white;
  font-size: 2.5rem;
  width: 100%;
}
.dateLine {
  margin-top: 3rem;
  border-bottom: 1px solid black;
  flex-grow: 1;
}
.proj {
  margin-top: 4rem;
  width: fit-content;
  display: flex;
  flex-direction: column;
}
.projTitle {
  margin-left: 4rem;
  font-size: 1.5rem;
  font-weight: 800;
}
.everythingElse {
  display: flex;
  width: fit-content;
}
.techUsed {
  display: flex;
  font-size: 2.5rem;
  gap: 10px;
  align-items: center;
}
.techUsed .fa-react {
  color: black;
}

.techUsed .fa-react:hover {
  color: #61dbfb;
}

.techUsed .fa-html5 {
  color: black;
}

.techUsed .fa-html5:hover {
  color: #e34c26;
}

.techUsed .fa-css3-alt {
  color: black;
}

.techUsed .fa-css3-alt:hover {
  color: #264de4;
}

.techUsed .fa-square.js {
  color: black;
}

.techUsed .fa-square-js:hover {
  color: #f0db4f;
}
.projImgContainer {
  position: relative;
  display: inline-block;
}

.projImg {
  filter: sepia(50%);
  margin-left: 1rem;
  border-radius: 25px;
  width: 375px;
  height: 250px;
  object-fit: cover;
  transition: box-shadow 0.5s, filter 0.5s;
  -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.75);
}

.projImgContainer .projLinks {
  position: absolute;
  right: .5rem;
  bottom: 0rem;
  height: 3rem;
  width: fit-content;
}

.projImg:hover {
  filter: sepia(0);
  -webkit-box-shadow: -10px 10px 0px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -10px 10px 0px 0px rgba(0, 0, 0, 0.75);
  box-shadow: -10px 10px 0px 0px rgba(0, 0, 0, 0.75);
}
.projDesc {
  margin-left: 1.9rem;
  color: #2c0085;
  font-weight: 700;
}
.projLink{
  color: white;
}
.clientProj {
  margin-top: 3rem;
  font-weight: 800;
  color: white;
  font-size: 2.5rem;
  width: 100%;
}
.skills{
  margin-bottom: 10rem;
  width: 100%;
  height: 10rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.skillContainer{
  font-size: 1.5rem;
  list-style-type: none;
}
.skillTitle{
  font-size: 3rem;
}
.about {
  height: fit-content;
}
.aboutTitle {
  padding-top: 8rem;
  font-weight: 900;
  font-size: 10rem;
}
.aboutTitleDesc {
  font-weight: 800;
  color: white;
  font-size: 2.5rem;
}
.aboutIntro {
  font-weight: 700;
  font-size: 1.75rem;
  color: #2c0085;
  overflow: auto;
}
.madeByEL {
  margin-top: 8rem;
  display: flex;
  color: black;
}
.dateLine {
  margin-top: -5px;
  border-bottom: 1px solid black;
  flex-grow: 1;
}
.home {
  margin-bottom: 1rem;
  height: 100vh;
}
.title {
  font-weight: 900;
  font-size: 10rem;
}
.titleDesc {
  font-weight: 800;
  color: white;
  font-size: 2.5rem;
}
.intro {
  width: 70%;
  margin-top: 3rem;
  font-weight: 700;
  font-size: 2rem;
  color: #2c0085;
}
.madeByEL {
  margin-top: 13rem;
  display: flex;
  color: black;
}
.dateLine {
  margin-top: -5px;
  border-bottom: 1px solid black;
  flex-grow: 1;
}
.contact {
  width: 100%;
  height: 10rem;
  display: flex;
  background-color: #8153dd;
}
.contactWrapper {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  width: 55%;
}
.contactItem {
  font-weight: 500;
  width: fit-content;
}
.contactItem:hover {
  color: white;
  cursor: pointer;
}
.contactLinks {
  text-align: right;
}
.contactLink {
  font-weight: 500;
  align-self: flex-end;
}
.contactLink:hover {
  color: white;
  cursor: pointer;
}

@media screen and (min-width: 1630px) {
  .techUsed {
    flex-direction: column;
  }
}
@media screen and (max-width: 1015px) {
  .projects{
    justify-content: center;
  }
  .navBar {
    width: 80%;
  }
  .about{
    margin-top: 0;
  }
  .navEl {
    font-size: 1.5rem;
    font-weight: 700;
  }
  .wrapper {
    width: 90%;
  }
  .projectTitle {
    font-size: 20vw;
  }
  .projTitle {
    margin: 0 auto;
  }
  .projImg {
    margin: 0 auto 1rem;
    width: 100%;
    height: 175px;
  }
  .projDesc {
    width: 90%;
    margin-left: 0;
    font-size: 1rem;
  }
  .aboutTitle {
    font-size: 28vw;
    margin-bottom: 1rem;
  }
  .aboutIntro {
    font-size: 1rem;
  }
  .home {
    height: 100vh;
  }
  .title {
    margin-top: 10%;
    font-size: 30vw;
  }
  .titleDesc {
    font-size: 2.25rem;
  }
  .intro {
    display: none;
  }
  .madeByEL {
    margin-top: 3rem;
  }
  .contactWrapper {
    width: 90%;
  }
  .contactMeTitle {
    font-size: 30vw;
    margin-bottom: 0.5rem;
  }
  .contactItem {
    font-size: 1rem;
  }
  .contactMeTitle {
    margin-top: 0.5rem;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }
  .linksTitle {
    margin-top: 0.5rem;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }
  .contactLink {
    font-size: 1rem;
  }
  .skills{
    margin-bottom: -4rem;
    height: fit-content;
  }
  .skill{
    margin-top: .3rem;
    font-size: 1rem;
  }
  .skillTitle{
    font-size: 1.5rem;
  }
  .proj{
    margin-top: 1rem;
  }
}
@media screen and (max-width: 1630px) {
  .nav {
    gap: 10px;
  }
  .proj {
    display: flex;
    flex-direction: column;
  }
  .projTitle {
    text-align: center;
  }
  .techUsed {
    width: 50%;
    margin: 1rem auto;
    justify-content: space-around;
    display: flex;
    flex-direction: row;
  }
  .everythingElse {
    display: flex;
    width: fit-content;
    flex-direction: column;
  }
  .anchorClass {
    align-self: center;
  }
  .projDesc {
    width: 80%;
    align-self: center;
    text-align: center;
    font-weight: 600;
    font-size: 1.3rem;
  }
}
