/* General styles */
body {
    font-family: Arial, Helvetica, sans-serif, sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #f5f5f5;
}

/* Heading */
h1 {
    text-align: center;
    padding: 1rem;
    background: #f5f5f5;
    color: #000000;
    margin: 0;
}

/* Image container */
#image-container {
    position: relative;
    width: 100%;
    height: 200vh; /* This makes the page long enough to scroll */
    overflow: hidden;
}

/* Images */
#image-container img {
    position: absolute;
    max-width: 100px;
    height: auto;
    transition: transform 0.3s ease;
}

#image-container img:hover {
    transform: scale(1.2);
}
/* Styling the container for the sentences */
#sentence-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Styling for individual sentences */
#sentence-container div {
    font-size: 20px;
    color: rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.574);
    position: absolute;
}
#click-message {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 30px;
    font-weight: bold;
    color: black;
    padding: 10px;
    text-align: center;
    background: none; /* Rimuove il background */
    box-shadow: none;  /* Rimuove l'ombra */
}

