#landing {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  background-image: linear-gradient(to right, #4ddb77, #00b837);
}

.logoAndType {
  width: 75%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.nextSection {
  margin: 10rem 0 3em 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nextSection span {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.nextSection img {
  width: 45px;
  border-radius: 10rem;
  transition: all 0.2s ease-in-out;
}

.nextSection img:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.logo img {
  max-width: 250px;
}

.header {
  color: #fff;
}

/* - Projects Section - */

#projectsSection {
  margin: 3rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.projectItem {
  width: 45%;
  margin: 0.5rem 0;
  display: flex;
  border-radius: 0.75rem;
  box-shadow: 0.1rem 0.1rem 0.3rem rgba(66, 66, 66, 0.1);
  transition: 0.2s all ease-in-out;
}

.projectItem:hover {
  transform: translateY(-5px);
  box-shadow: 0.1rem 0.4rem 0.6rem rgba(55, 55, 55, 0.13);
}

.projectImg {
  min-width: 35%;
  width: 35%;
  margin-right: 1.2rem;
  object-fit: cover;
}

.projectImg img {
  width: 100%;
  border-radius: 0.75rem 0 0 0.75rem;
}

.projectText {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.projectText a {
  width: inherit;
  font-size: 0.9rem;
  color: #00cc3d;
  transition: all 0.2s ease-in-out;
}

.projectText a:hover {
  color: #00982e;
}

.projectName {
  cursor: default;
  font-size: 1.4rem;
  font-weight: 700;
  color: #252525;
}

/* - Responsivity - */

@media only screen and (max-width: 1000px) {
  .logo img {
    max-width: 180px;
  }

  .projectItem {
    width: 75%;
  }
}

@media only screen and (max-width: 700px) {
  #landing {
    padding: 0 10%;
  }

  .projectItem {
    width: 80%;
  }

  .projectName {
    font-size: 1.2rem;
  }
}

@media only screen and (max-width: 420px) {
  .header {
    text-align: center;
  }

  .projectItem {
    width: 90%;
  }

  .projectImg {
    min-width: 45%;
  }
}
