body {
    background-color: black;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

h1 {
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    animation: rgb-animation 6s infinite;
    font-family: "Cedarville Cursive";
    color: white;
}

@keyframes rgb-animation {
    0% {
        color: rgb(255, 0, 0);
    }
    25% {
        color: rgb(0, 255, 0);
    }
    50% {
        color: rgb(0, 0, 255);
    }
    75% {
        color: rgb(255, 255, 0);
    }
    100% {
        color: rgb(255, 0, 0);
    }
}

.image {
    width: 150px;
    height: 150px;
    margin: 10px;
    transition: transform 0.5s ease, opacity 0.5s ease; /* Transition effect /
}

.image:hover {
    transform: scale(1.1); / Scale up the image on hover /
    opacity: 0.8; / Slightly decrease opacity on hover */
}
