* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


.heading {
    font-size: 100px;
    font-weight: bolder;
    color: rgb(60, 37, 37);
    text-align: center;
    letter-spacing: 30px;
    text-shadow: 6px 3px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    top: 10%;
    background: linear-gradient(
        to right,
        hsl(0, 0%, 0%) 0,
        hsl(0, 0%, 100%) 10%,
        hsl(0, 0%, 0%) 30%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 8s infinite ease-out;
}

@keyframes shine {
    0% {
        background-position: 0;
    }
    60% {
        background-position: 60px;
    }
    60% {
        background-position: 1000px;
    }
}

.bg-cotainer {
    background-image: url(https://res.cloudinary.com/practicaldev/image/fetch/s--F7w_snYb--/c_imagga_scale,f_auto,fl_progressive,h_420,q_auto,w_1000/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/vda3askm2sbfjl717q9q.png);
    height: 100vh;
    background-size: cover;  
}

.positions {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 50px;
    position: relative;
    top: 16%;
}

.box {
    display: flex;
    flex-direction: column;
    margin: 10px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    border: 1px solid lime;
    text-align: center;
    position: relative;
    background-color: orange;
    justify-content: center;
    align-items: center;
}

.box img {
    width: 70%;
    height: 80%;
    background-blend-mode: multiply;  
    position: absolute;
    transition: transform 0.3s ease;
}
.last-box img {
    width: 100%;
    height: 90%;
    background-blend-mode: multiply;
    position: absolute;
    transition: transform 0.3s ease;
    left: 5%;
}

.first-box img {
    width: 85%;
    height: 80%;
    background-blend-mode: multiply;
    position: absolute;
    transition: transform 0.9s ease;
    top: 12%;
}
/* .box img:hover {
    transform: scale(1.6);
    transform: translate(50%, -50%);
} */

.first-box img:hover {
    transform: translate(50%, -50%);
}

.box:not(.first-box):not(.last-box) img:hover {
    transform: scale(1.7);
    transition: transform 0.9s ease;
}

.last-box img:hover {
    transform: translate(-50%, -50%);
    transition: transform 0.9s ease;
}  

