.container-1{
  display: flex;
  flex-direction: row;
  gap: 2rem;
  font-size: 1.3rem;
  padding: 3rem 1rem;
  background: rgba(255, 255, 255, 0.95);
}


.prev-button:link, .prev-button:visited,
.prev-button:hover, .prev-button:active{
  color: black;
  cursor: pointer;
}

@keyframes slideLeft{
  0%{
    opacity: 0;
    position: relative;
    right: 100%;
  }
  
  100%{
    opacity: 1;
    right: 0%;
  }
}

.project-item{
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  background: white;
  margin: 0.5rem 0;
  padding: 0.3rem;
  border-top: 0.1rem solid var(--primary-color);
  border-radius: 2rem;
}


.title:link, .title:visited{
  font-size: 1.6rem;
  color: var(--primary-color);
  text-decoration: none;
  line-height: 1.7;
}

.title:active, .title:hover{
  text-decoration-line: underline;
  color: var(--secondary-color);
}

.content{
  display: flex;
  flex-direction: row;
  justify-content: center;
  column-gap: 0.6rem;
  padding: 0 1rem;
  line-height: 1.6;
}

.description{
  font-size: 1.2rem;
  line-height: 1.8rem;
}

footer{
  background: transparent;
}

.heading{
  margin-bottom: 3rem;
}

.header{
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
}

.projects-container{
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

h1{
  font-size: 1.7rem;
}

@media screen and (min-width:922px){
  .projects-container{
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: auto auto;
    gap: 1rem;
  }
  
  .project-item{
    margin: 1.5rem;
  }
}
