@charset "utf-8";
/* CSS Document */
@charset "utf-8";

/* General Reset & Body */
.redtext {
    color: #F00;
}
.h3-inline {
	display:inline;
}

.h2-centred {
	text-align:center;
	font-size:24px;
	font-weight: bold;
	width: 100%;
}

body {
	background-color: #990000;
	margin: 0;
	padding: 20px 0;
	display: flex;
	justify-content: center;
	font-family: sans-serif;
	font-weight: bold;
}

.container1 {
	display: flex;
	flex-direction: column; /* Stack content vertically */
	justify-content: center;
	align-items: center;
	background-color: #EEFFCC;
	border: thick solid #99cc33;
	border-radius: 25px;
	margin: auto;
	width: 90%; /* Responsive width */
	max-width: 1500px; /* Limits size on desktop */
	padding: 10px;
	box-sizing: border-box;
}

.container {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	padding-top: 15px;
/*	padding: 15px; */
	box-sizing: border-box;
	margin-bottom: 10px;
	line-height: 1.6;
}

/* Image Centering & Margin */
.image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 10px 0; /* Small margin around the image */
}

.image-container img {
    max-width: 100%; /* Responsive */
    height: auto;
    display: block;
}

.spacer-16px {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    padding: 10px;
}

.spacer-18px {
    font-size: 18x;
    font-weight: bold;
    text-align: center;
	padding-top: 15px;
/*    padding: 10px; */
}



/* Fixed the header to be responsive */
.header {
    width: 100%;
    max-width: 400px;
    padding-top: 20px;
    text-align: center;
}

.article-text {
	/*	padding: 15px; */
	line-height: 1.4;
	font-weight: bold;
/*	margin-top: 20px; */
}

.article-middle {
	line-height: 1.4;
	font-weight: bold;
	margin-left: 20%;
	margin-right: 20%;
}


/* Navigation bar  */
.nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 130px); /* fixed width */
  grid-auto-rows: 20px;                   /* fixed height */
  gap: 20px;                              /* 20px spacing */
  justify-content: center;                /* center grid horizontally */
  align-content: center;                  /* center vertically (if height allows) */
  background: #EEFFCC;
  padding: 10px;
}

.nav-grid a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 30px;
  font-size: 16px;   /* ðŸ‘ˆ text size */
  color: white;
  text-decoration: none;
  background: #C00000;
  border-radius: 8px;
  transition: 0.3s;
}

.nav-grid a:hover {
	background: #0531f5;
	color: #ffffff;
}
@media (max-width: 768px) {
  .nav-grid {
    grid-template-columns: repeat(2, 130px);
  }
.article-middle {
	line-height: 1.4;
	font-weight: bold;
	margin-left: 2%;
	margin-right: 2%;

}
}