  @import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Homemade+Apple&family=Kay+Pho+Du&display=swap');

body {
  background-image: url("/Images/Background.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.wrapper {
	background-color: rgb(60, 60, 60, .9);
	padding: 14px 16px;
	border-radius: 25px;
	min-height: 90%;
	border-radius: 25px;
	min-width: 95%;
}

/* navbar/banner */
.bg-img {
  /* The image used */
  background-image: url("/Images/Banner.jpeg");
  min-height: 300px;
  border-radius: 25px 25px 0 0;

  /* Center and scale the image */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  /* position the navbar */
  position: relative;
}

/* Position the navbar container inside the image */
.container {
  position: absolute;
  margin: 20px;
  width: auto;
}

/* The navbar */
.topnav {
  overflow: hidden;
  background-color: rgb(60, 60, 60, .8);
  border-radius: 25px;
}

/* Navbar links */
.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.header {
}

.row {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	width: 100%;
	justify-content: center;
	}
	
.row a {
	color: cyan;
	}
	
.row a:visited {
	color: #bfbfbf;
	}
	
.row a:hover {
	color: fuchsia;
	}

.column {
  float: left;
  padding: 10px;
  width: 20%;
  border: 1px solid #888;
  box-shadow: 0 0 10px rgba(128, 128, 128, 0.5); /* Glow effect (#bfbfbf with some transparency) */
  border-radius: 25px;
  min-height: 300px;
  margin: 15px;
  flex: 1;
}

/* Left and right column */
.column.side {
  width: 20%;
  border: 1px solid #888; /* #bfbfbf border color (#888) */
  padding: 10px; /* 10px padding inside the element */
  box-shadow: 0 0 10px rgba(128, 128, 128, 0.5); /* Glow effect (#bfbfbf with some transparency) */
  border-radius: 25px;
  flex: 1;
}

/* Middle column */
.column.middle {
  width: 47%;
  color: white;
  flex: 2;
  font-size: 18px;
}

.column.middle a:visited {
  color: #eb81d4; /* Set the color for visited links */
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column.right, .column.middle {
    width: 100%;
	display: block;
  }
}

/* Clear floats after the columns */
.row::after {
  content: "";
  clear: both;
}

/* Style the footer */
.footer {
  background-color: rgb(60, 60, 60, .95);
  padding: 10px;
  text-align: center;
  color:black;
  border-radius: 0 0 25px 25px;
  font-size: 0.75em;
  font-family: 'Kay Pho Du', serif;
  border: 1px solid #888;
  box-shadow: 0 0 10px rgba(128, 128, 128, 0.5);
}

.blank {
	min-height: 10px;
}

h1, h2, h3 {
	color:white;
	text-align:center;
	font-family: 'Amatic SC', sans-serif;
	}
	
h1 {
	font-size: 36px;
}
	
h3 {
	font-size: 26px;
	text-align:center;
}
	
h4 {
	color:white;
	font-family: 'Amatic SC', sans-serif;
	font-size: 1.5em;
	display: inline;
	}
	
.link-list {
  width: 100%;
  border-radius: 5px;
  margin: 0 auto;
  color: white;
  font-size: 18px;
}

.link-list ul {
  list-style-type: none;
  padding: 0;
}

.link-list li {
  padding: 5px 0;
}

.link-list a {
  display: block;
  text-decoration: none;
  color: cyan;
}

.link-list a:hover {
  background-color: black; /* Change the background color when hovering over a link */
  color: white; /* Change the text color when hovering over a link */
}
	
.link-list a:visited {
  color: #eb81d4; /* Set the color to #bfbfbf for visited links */
}
	
	.cover {
  float: left;
  width: 120px;
  margin: 5px 15px 5px 5px;
  box-shadow: 0 4px 8px 0 rgba(255, 255, 255, 0.2), 0 6px 20px 0 rgba(255, 255, 255, 0.19);
  text-align: center;
}
	