.projects{
    background-color: #E38B93;
    border-bottom-right-radius: 15% 3%;
    border-bottom-left-radius: 15% 3%;
}

.more{
  display: flex;
  flex-flow: column;
  flex-wrap: nowrap;
  margin-left: 8rem;
  margin-bottom: 2rem;  
  color: white;
  font-family: headerFont;
  width: 30%;
  }

.project{
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0.4rem 0.4rem 0.4rem rgba(46,41,78,.15);
    border-radius: 5px;
    height: 42rem;
    width: 30rem;
    background-color: #ffffff;
    margin: 4rem;
}

.project:hover{
  -webkit-animation:anim .2s;
  animation: anim .2s;
}

@keyframes anim {
  to { transform: translateY(-0.5rem);}
}

@-webkit-keyframes anim {
  to { transform: translateY(-0.5rem);}
}

.proj-img{
  width: 28rem;
  height: 15rem;
  margin: 1rem;
}

.tech{
    border: #2d8659 1px solid;
    border-radius: 5px;
    display: flex;
    background-color: #2d8659;
    background-image: linear-gradient(to bottom right, #39ac73, #2d8659);
    color: white;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 5rem;
    height: 2rem;
    margin: .2rem;
    font-size: smaller;
}

.tech-container{
    display: flex;
    flex-wrap: wrap; 
    height: 2.5rem; 
    font-family: "Times New Roman", Times, serif;
  }

.project-par{
    height: 12rem;
    margin: 1rem;
  text-align: left;
  font-family: "Times New Roman", Times, serif;
  }

.proj-code{
    border: #0099cc 1px solid;
    border-radius: 5px;
    display: flex;
    background-color: #0099cc;
    background-image: linear-gradient(to bottom right, #00bfff, #0099cc);
    color: white;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 13rem;
    height: 3rem;
    margin: .2rem;
    margin-bottom: 1rem;
    font-family: "Font Awesome 5 Pro";
  }

  
  .proj-code:hover{
    color: white;
    background-image: linear-gradient(to bottom right, #02a6dd, #006e92);
    text-decoration: none;
    animation: pranim .1s;
  }
  

  @keyframes pranim{
    to {transform: scale(1.02);}
  }