html {
    background-color: lightyellow;
}

body {
    padding: 5px;
    max-width:812px;
	margin:0 auto;;
	border: 1px solid yellow;
	background-color: white;
}

.overlay {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: red;
    font-size: 12px;
}

.icon {
    padding: 8px;
    height: 100px;
}

.image-media {
    border: 1px solid lightgrey
}

.image-container {
    background-color: rgb(132, 132, 132);
    display: none;    
    text-align: center;
}

.banner {
    background-image: url('redblack.png');
    height: 120px;
    width: 100%;
    background-size: 100% 100%; /* Stretches the image to fit the container */
    position: relative;
}


#navbar a {
    background-color: black;
    color: white;
    padding: 8px;
    text-decoration: none;
    display: inline-block;
}

#navbar a.active {
    color: yellow;         /* Change text color to yellow for the active page */
}


#navbar a:hover {
    background-color: darkorange; /* Change background to dark orange on hover */
}
