body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.5s ease;
    background-color: #0c0c2c;
    background-image: url('bg.jpg'); 
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat; 
}


.image-container {
    display: flex;
    justify-content: center; 
    width: 100%; 
    padding: 0; 
    gap: 10px; 
}

.color-image {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0; 
}

.color-image:hover {
    transform: scale(1.2); 
}

.img1 {
    width: 100px;
    height: auto;
    position: relative;
    top: 50px;  
    transform: translateX(-50px);
}


.img2 {
    width: 200px;
    height: auto;
    position: relative;
    top: 0; 
    transform: translateX(-20px);
}

.img3 {
    width: 290px;
    height: 260px;
    position: relative;
    top: 80px; 
}

.img4 {
    width: 220px;
    height: auto;
    position: relative;
    top: -20px; 
    transform: translateX(50px);
}

.img5 {
    width: 130px;
    height: 80px;
    position: relative;
    top: 180px; 
    transform: translateX(50px);
}