.PropDiv{
  margin-top: 50px;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.Img-Prop{
  height: 400px;
  border-radius: 30px;
  border: 5px solid #3cb1ff;
  box-shadow: 0 0 20px #3cb1ff;
  transition: 0.4s;
}

.Descript{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 5px solid #929cec;
  box-shadow: 0 0 20px #929cec;
  background-color: transparent;
  border-radius: 30px;
  border-top: 0px transparent;
  transition: 0.4s;
}
  
.Descript h4{
  color: #929cec;
  transition: 0.4s;
}

.Descript h2{
  color: #929cec;
  transition: 0.4s;
  margin-left: 10px;
  margin-right: 10px;
}

.Img-Prop2{
  height: 400px;
  border-radius: 30px;
  border: 5px solid #ff84a3;
  box-shadow: 0 0 20px #ff84a3;
  transition: 0.4s;
}

.Descript2{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 5px solid #ff9677;
  box-shadow: 0 0 20px #ff9677;
  background-color: transparent;
  border-radius: 30px;
  border-top: 0px transparent;
  transition: 0.4s;
}
  
.Descript2 h4{
  color: #ff9677;
  transition: 0.4s;
}

.Descript2 h2{
  color: #ff9677;
  transition: 0.4s;
  margin-left: 10px;
  margin-right: 10px;
}

.PropCurser{
  transition: 0.4s;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.PropCurser:hover{
  cursor: pointer;
  transform: rotate(-3deg);

  .Img-Prop{
    border: 5px solid #929cec;
    box-shadow: 0 0 20px #929cec;
  }
  
  .Descript{
    border: 5px solid #3cb1ff;
    box-shadow: 0 0 20px #3cb1ff;
    border-top: 0px transparent;
  }
    
  .Descript h4{
    color: #3cb1ff;
  }
  
  .Descript h2{
    color: #3cb1ff;
  }
}

.PropCurser2{
  transition: 0.4s;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.PropCurser2:hover{
  cursor: pointer;
  transform: rotate(3deg);

  .Img-Prop2{
    border: 5px solid #ff9677;
    box-shadow: 0 0 20px #ff9677;
  }
  
  .Descript2{
    border: 5px solid #ff84a3;
    box-shadow: 0 0 20px #ff84a3;
    border-top: 0px transparent;
  }
    
  .Descript2 h4{
    color: #ff84a3;
  }
  
  .Descript2 h2{
    color: #ff84a3;
  }
}