body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	background-color: #000000;
}

header {
	background-color: #242424;
	color: #fff;
	padding: 3px;
	border-radius: 0px;
	text-align: center;
}

main {
	padding: 20px;
}

h1,
h2 {
	margin: 0;
	padding: 10px 0;
}

section {
	margin-bottom: 40px;
}

.info-box {
	background-color: #202020;
	padding: 20px;
	margin-bottom: 40px;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	transform: translateY(0);
	transition: transform 0.3s ease;
    color: white;
}

.info-box:hover {
	transform: translateY(-10px);
}

.grid-container {
	display: grid;
	gap: 20px;
}

#image-grid img,
#video-grid video {
	width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
}

#image-grid img:hover,
#video-grid video:hover {
	transform: scale(1.05);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

#image-grid img::after,
#video-grid video::after {
	content: attr(title);
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(0, 0, 0, 0.75);
	color: #fff;
	padding: 8px 12px;
	border-radius: 8px;
	border: 2px solid #fff;
	white-space: nowrap;
	font-size: 14px;
	opacity: 0;
	transition: opacity 0.3s ease, bottom 0.3s ease;
	z-index: 10;
}

#image-grid img:hover::after,
#video-grid video:hover::after {
	opacity: 1;
	bottom: 20px;
}

footer {
    background-color: #242424;
    color: #fff;
    text-align: center;
    padding: 3px;
    position: fixed;
    bottom: 0;
    width: 100%;
    border-top: 1px solid #333;
  }
  