.parent-box{
    border: 1px solid black;
    position: relative;
    align-items: center;
    text-align: center ;
    font-size: 40px;
    display: flex;
    color: white;
    font-weight: bold;
    text-decoration:underline;
}
.box1{
    position: absolute;
    top: 50px;
    left: 50px;
    background-color: aquamarine;
    width: 200px;
    height: 200px;
    border: 1px solid black;
}
.box2{
    position: fixed;
    top: 100px;
    left: 100px;
    background-color: black;
    width: 200px;
    height: 200px;
    border: 1px solid white;
}
.box3{
    position: relative;
    top: 150px;
    left: 150px;
    background-color:darkorange;
    width: 200px;
    height: 200px;
    border: 1px solid black;
}
.box4{
    position: sticky;
     z-index: -1;
    background-color: gold;
    width: 150px;
    height: 150px;
    border: 1px solid black;

}
.boxes{
    background-color: black;
    height:700px;
    border: 1px solid black;
}
.box1:hover{
    transform: scale(2);
}
.box2:hover{
    transform:rotate(45deg)
    translate(200px, -100px);
}
.box3:hover{
    transform: translate(5px,20px);
}
.box4:hover{
    transform:perspective(400px);
}