* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

body {
    background-color: #FFB4A2;
}

.img-gallery {
    width: 80%;
    margin: 100px auto 50px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-gap: 50px;
}

.img-gallery img {
    width: 100%;
    cursor: pointer;
    transition: 0.4s;
}
.img-gallery img:hover {
    transform: scale(0.8) rotate(-15deg);
    border-radius: 20px ;
    box-shadow: 0 32px 7px rgba(234, 122, 204, 0.2);
}
.full-img {
    width:100%;
    height:100%;
    background-color:#C599B6 ;
    position:fixed;
    top:0;
    left:0;
    display : none;
    align-items:center;
    justify-content: center;
    z-index: 100;
}
.full-img img {
    width: 90%;
    max-width: 500px;
    
}
.full-img span {
    position: absolute;
    top: 5%;
    right: 5%;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}
.img-container {
  position: relative;
}

.like-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.like-btn.liked {
  color: red;
}
#uploadImage {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ae3353;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}
        