.projects-parent {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  /*   margin: 1em; */
  /*   padding: 1em; */
}

.headings {
  text-align: center;
  margin: 0 auto;
  z-index: 0;
  color: white;
}

.projects-parent h1 {
  margin-bottom: 0;
  font-size: 2.5em;
}

.projects-parent h2 {
  margin-top: 0;
  font-size: 1.75em;
}

.projects-accordian {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%;
  background: gray;
  border-radius: 15px;
  margin: 40px auto;
  box-shadow: 0px 0px 40px 8px black;
}

.landing-container {
  justify-content: center;
  height: 100%;
}

.contact-info-card {
  height: 75%;
}

.front-end-projs {
  font-size: 30px;
}

.projects-accordian .container {
  width: 100%;
  margin: 20px 20px;
}

.container div.label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 35%;
  margin: 0 auto;
  padding: 10px 0;
  font-size: 1.3em;
  color: black;
  text-align: center;
}
.container div.label i {
  cursor: pointer;
  transition: 0.3s;
}

.container .content {
  height: 0;
  font-size: 1.3em;
  text-align: justify;
  width: 100%;
  overflow: hidden;
  transition: height 0.5s;
}

.container.active .label + .content {
  height: 400px;
}

.container.active .label i {
  cursor: pointer;
  transform: rotate(270deg);
}

.logo-container {
  display: inline-block;
  position: relative;
  height: 35px;
  width: 35px;
  border: 1px solid black;
}

.logo-container img {
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
  object-fit: cover;
}

.react-logo {
  background-image: url("../images/reactLogo");
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.projects-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  margin: 10px 10px;
}

.app {
  margin: 10px 20px;
  height: 30vh;
  flex-grow: 1;
  border-radius: 10px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transition: 0.3s;
}

.app:hover {
  transform: scale(1.2);
  cursor: pointer;
}

.app-container {
  width: 33%;
  color: white;
}

.app-container p.label {
  width: 100%;
  font-size: 1em;
  margin: 0px auto;
  text-align: center;
  color: white;
}

.react {
  background: #172815;
}

.movie-app {
  background-image: url("../images/projects/react/movieApp");
}

.angular {
  background: #172815;
}

.pokemon-app {
  background-image: url("../images/projects/angular/charmander");
}

.hr-timesheet-app {
  background-image: url("../images/projects/angular/hrTimesheetCircle");
}

.boardgame-app {
  background-image: url("../images/projects/angular/boardGames.jpeg");
}

.vanillajs {
  background: #172815;
}

.golfscorecard-app {
  background-image: url("../images/projects/vanillajs/golfScorecardApp");
}

.todo-app {
  background-image: url("../images/projects/vanillajs/toDoApp");
}

.joseph-burton-portfolio {
  background-image: url("../images/projects/vanillajs/portfolioFolders");
}

.nodejs {
  background: #1D1128;
}

.student-registration-app {
  background-image: url("../images/projects/nodejs/registrationApp");
}

@media screen and (orientation: portrait) {
  .projects-container {
    flex-direction: column;
  }
  .container.active .label + .vanillajs {
    height: 750px;
  }
  .app-container {
    min-width: 280px;
  }
  .container div.label {
    width: 100%;
    justify-content: space-evenly;
  }
}

/*# sourceMappingURL=landing-page.css.map */
