
/* Basic reset */
body, h1, p, a {
    margin: 0;
    padding: 0;
    font-family: "Comic Sans MS", "Comic sans";
}

body {
	overflow-x: hidden; /* Prevent horizontal overflow */
	margin: 0;
	padding: 0;
	background-image: url("pics/back.jpg");
	background-size: 100px, 100px;
	background-position: center;
	background-repeat: bottom left;
}

main {
	flex: 1;
	padding: 20px;
}

.banner {
	display flex;
	align-items: center; /* Get the items in the middle horizontally*/
	position: relative;
	width: 100%;
	height: 7.5vh;
	background-color: black;
	text-align: center;
	color: red;
}
/* Banner GIF */
.banner-icon {
	position: absolute;
	top: 0;
	left: 0;
	width: auto;
	height: 7.5vh; 
	z-index: 5;
}

/* Header */
.header {
	justify-content: flex-start;
	text-align: right;
	flex: 1;
	margin: 0;
}

.link {
	text-decoration: none;
}
/* Banner Buttons */
.button-section {
	display: inline-flex;
	justify-content: right;
	align-items: center;
	position: relative;
	bottom: 0;
	left: 0;
	width: 100%;
	flex: 1;
	text-align: right;
}

.custom-button {
	font-size: 2vh;
	border: none;
	background-color: black;
	color: red;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.custom-button:hover {
	background-color: #454545;
}

/* Content inside the banner */
.banner-content {
    position: relative;
    z-index: 2;
}

/* Paragraph styles */
.banner p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Content items */
.content-pillar {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1;
	width: 80vw;
	max-width: 1536px;
	height: auto;
	min-height: 92.5vh;
	margin: 0 auto;
	overflow: hidden;
	background-color: black;
	padding: 20px;
	box-sizing: border-box;
	color: red;
}

.content-image {
	align-items: center;
	max-width: 80%;
	width: 70%;
	height: auto;
	display: block;
	margin-top: 20px;
	border: 1px;
	border-radius: 8px;
}

.content-image img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: auto;
}

.icon-container {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	object-fit: cover;
}

.icon-container img{
	width: 50px;
	height: 50px;
	object-fit: cover;
	border-radius: 15px;
}

.footer {
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translate(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	align-items: center;
	width: 100%;
	padding: 20px 0;
}

.pagination {
	margin: 20px 0;
	text-align: center;
}
.pagination a {
	margin: 0 5px;
	padding: 8px 8px;
	background-color: black;
	border: none;
	color: red;
}
.pagination a:hover {
	background-color: #454545;
}
