*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-image: url('./src/photos/safari.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
}

.itam{
    margin:20px;
    margin-top: 30px;
    width: 80%;
    height: 200px;
    cursor: pointer;
}
img{
  
    transition: ease-in-out 0.3s;
    height: 200px;
    width: auto;
}
img:hover{
    transform: scale(1.2);
    
}
#lion{
    position: absolute;
    bottom: 10px;
    left:200px;
    z-index: 5;
}
#pig{
    position: absolute;
    bottom: 10px;
    left:0;
    z-index: 4;
}
#monkey{
    position: absolute;
    bottom: 300px;
    left:500px;
    z-index: 4;
}
#elephant{
    position: absolute;
    bottom: 10px;
    left:900px;
    z-index: 6;
}
#dog{
    position: absolute;
    bottom: 10px;
    left:1400px;
    z-index: 7;
}