body {
  background: linear-gradient(45deg, #ff1900, #0f1ae9, #ee9300);
  margin: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: white;
}
.container {
  height: 100vh;
  width: 100vw;
  max-height: 800px;
  max-width: 1280px;
  min-height: 600px;
  min-width: 1000px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
}

.border {
  height: 369px;
  width: 290px;
  background: transparent;
  border-radius: 10px;
  transition: border 1s;
  position: relative;
}

.border:hover {
  border: 1px solid white;
}

.card {
  height: 379px;
  width: 300px;
  background: grey;
  border-radius: 10px;
  transition: background 0.8s;
  overflow: hidden;
  background: black;
  box-shadow: 0 70px 63px -60px #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.card0 {
  background: url("me.jpg")
    center center no-repeat;
  background-size: 300px;
}

.card0:hover {
  background: url("me.jpg")
    left center no-repeat;
  background-size: 600px;
}

.card0:hover h2 {
  opacity: 1;
}

.card1 {
  background: url("soumen.jpg")
    center center no-repeat;
  background-size: 300px;
}

.card1:hover {
  background: url("soumen.jpg")
    left center no-repeat;
  background-size: 600px;
}

.card1:hover h2 {
  opacity: 1;
}

.card2 {
  background: url("nitish.jpg")
    center center no-repeat;
  background-size: 300px;
}

.card2:hover {
  background: url("nitish.jpg")
    left center no-repeat;
  background-size: 600px;
}

.card2:hover h2 {
  opacity: 1;
}
.card3 {
  background: url("habibi.jpg")
    center center no-repeat;
  background-size: 300px;
}

.card3:hover {
  background: url("habibi.jpg")
    left center no-repeat;
  background-size: 600px;
}

.card3:hover h2 {
  opacity: 1;
}

h2 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: rgb(0, 0, 0);
  margin: 20px;
  opacity: 0;
  transition: opacity 1s;
}
h1 {
  margin-bottom: 0px;
  background: linear-gradient(45deg, #f50303, #fdf900);
  -webkit-background-clip: text;
  color: transparent;
  font-size: 36px; 
}