.project {
  padding: 40px;
  padding-top: 100px;
  width: 100%;
  height: 100vh;
}

.url {
  text-decoration: none;
}

.proje {
  width: 300px;
  height: 200px;
  border-radius: 20px;
  background: #302f4e !important;
  margin: 20px;
  overflow: hidden;
  transform: translateY(0);
  transition: all 0.3s ease-in-out;
  cursor:pointer;
  float: left;
}

.proje:hover {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(-10px);
}

.proje img {
  width: 300px;
  border-radius: 20px 20px 0 0 ;
  transition: transform 0.2s;
}

.proje img:hover {
  transform: scale(1.1);
}

.proje span {
  padding: 5px;
  background-color: #FF4C60;
  border-radius: 0 0 10px 10px;
  position: relative;
  left: 20px;
  bottom: 145px;
  color: white;
}

.proje div {
  padding: 10px;
  font-weight: 800;
  font-size: 20px;
  position: relative;
  bottom: 30px;
  color: white;
  border-radius: 0 0 20px 20px;
  background: #302f4e !important;
}

.proje div:hover {
  color: #FF4C60;
}