body {
    background-color:black;
}

h1 {
    color:white;
}

.centered-text {
    text-align:center;
}

.image-container {
    /* Optional: Hide overflowing parts of the image if it expands beyond the container */
    overflow: hidden; 
    /* Set a specific size for the container if needed, e.g., height: 200px; */
}

.zoom-img {
    /* Add a smooth transition effect */
    transition: transform 0.3s ease; /* 0.3s is the speed, ease is the timing function */
    /* Optional: Change cursor to a pointer on hover */
    cursor: pointer; 
}

.zoom-img:hover {
    /* Slightly enlarge the image by 10% (1.1 times its size) */
    transform: scale(1.1); 
}

/* cheese touch