
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('Background1.gif');
    background-repeat: repeat; /* This makes the image repeat */
    background-size: 800px;
}

header{
	text-align: center;
} 

footer {
    color: black;
    text-align: center;
    font-family: Bell MT;
    font-size: 12px;
    flex-shrink: 0;
}

main {
    padding: 1em;
    background-image: url('main-bg.jpg');
    background-repeat: repeat; /* Adds repeating image for the main content */
    font-family: Bell MT;
    font-size: 20px;
}

.info-container img {
    width: 250px; /* Sets the initial image size */
    transition: opacity 0.5s ease; /* Smooth transition effect */
}

.info-container img:hover {
    opacity: 0.5; /* Optional: Adds a slightly faded effect */
}

.contact-container img {
    width: 200px; /* Sets the initial image size */
    transition: opacity 0.5s ease; /* Smooth transition effect */
    margin-bottom: -30px;
    margin-left: -10px;
    margin-right: -10px;
}

.contact-container img:hover {
    opacity: 0.5;

}

.back-container img {
    width: 250px;
    transition: opacity 0.5s ease;
    margin-bottom: -30px;
}

.back-container img:hover {
    opacity: 0.5;

}

.flashing-text {
            animation: flash 1s infinite;
        }

@keyframes flash {
            0%, 100% {
                opacity: 1; /* Fully visible */
            }
            50% {
                opacity: 0; /* Completely invisible */
            }
        }
        
        
        