@charset "utf-8";

/* CSS Document */

/* CSS is used to help style and format your page a specific way. Without it, your page would be blank white with basic black text ontop.
It's good to have a single stylesheet as it helps keep the website visually consistent across every page. */

* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

body {
	background: url("img/bg/bck-grid.gif");
	text-align: center;
	color: #fff;
	margin: 0 auto;
	font-family: "Segoe UI";
	font-size: 24px;
}

a {
	color: inherit; /* Take the text colour from the body */
	text-decoration: none; /* No underline */
}

header {
	/*background: url("img/header-bg.png") no-repeat center center;*/
	background: linear-gradient(#210650, #110229);
	background-size: cover;
	padding: 80px 0;
	text-align: center;
	color: #fff;
	font-size: 48px;
	border-bottom: solid #3220A5 medium;
	margin-bottom: 45px;
}

nav {
	overflow: hidden;
	display: flex;
	align-items: center;
  	justify-content: center;
	padding: 16px;
	height: 92px;
	background: linear-gradient(#210650, #110229);
	border: solid #3220A5 medium;
	width: 800px;
	margin: 0 auto;
	margin-bottom: 45px;
}

.navItem {
	width: 33.3%;
	transition: all .15s ease-in-out; /* This is for animation */
}

.navItem:hover {
	transform:scale(1.1);
}

.homeBox {
	font-size: 16px;
	background: linear-gradient(#210650, #110229);
	width: 8%;
	margin: 36px auto;
	padding: 16px;
	border: solid #3220A5 medium;
}

.blurbBox {
	font-size: 16px;
	background: linear-gradient(#210650, #110229);
	width: 32%;
	margin: 45px auto;
	padding: 16px;
	/* remove header boldness */
	font-style: normal !important;
    font-weight: normal !important;
	border: solid #3220A5 medium;
}

.mainBox {
	background: linear-gradient(#210650, #110229);
	width: 1200px;
	margin: auto; /* Keeps it in the center of the page */
	justify-content: center;
	display: flex;
	column-gap: 5%;
	flex-wrap: wrap; /* Wrap around below if there's too many items */
	padding: 32px; /* Pads the inside of it */
	border: solid #3220A5 medium;
	margin-bottom: 48px;
}

.smallBox {
	background: #13042E;
	text-align: center;
	color: #fff;
	flex: 0 0 30%; /* How much space the cards have to work with */
	width: auto;
	padding-top: 20%;
	padding-bottom: 20%;
	border: solid #3220A5 medium;
}
/* Art images */
/*.artBox {
	line-height: 0;
	column-gap: 5%;
	padding: 4%;
	background: #13042E;
	color: #fff;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	border: solid #3220A5 medium; 
}*/

.artBox {
	display: flex;
  	flex-wrap: wrap;
  	justify-content: flex-start;
	align-items: center;
}

/* Resize images */
.artBox img {
	float: left;
	object-fit: cover;
    width: 18vw !important;
    height: auto !important;
 	border: solid transparent medium; /* This is to help with the hover outline effect */
	transition: all .15s ease-in-out; /* This is for animation */
}

.artBox video {
	object-fit: cover;
	border: solid transparent medium; /* This is to help with the hover outline effect */
	transition: all .15s ease-in-out; /* This is for animation */
}

div.artBox div.desc {
	padding: 15px;
	text-align: center;
}

div.artBox img:hover { /* Uses border-box in * for outlines not affecting the image size */
	cursor: pointer; /* Pointing hand when hovering */
	border-style: solid;
    border-width: medium;
	border-color: #FF0000;
	transform:scale(1.1);
}

div.artBox video:hover { /* Uses border-box in * for outlines not affecting the image size */
	cursor: pointer; /* Pointing hand when hovering */
	border-style: solid;
    border-width: medium;
	border-color: #FF0000;
	transform:scale(1.1);
}

.paragraphBox {
	background: linear-gradient(#210650, #110229);
	width: 800px;
	margin: auto; /* Keeps it in the center of the page */
	display: inline-block;
	padding: 32px; /* Pads the inside of it */
	border: solid #3220A5 medium;
	margin-bottom: 48px;
}

.paragraphBox table, th, td {
	border-collapse: collapse; /* Remove ugly spacing */
	padding: 12px;
	display: table;
	width: 100%; /* Split the two columns equal. Only works if display: table-cell is there. */
}

.paragraphBox p, li {
	text-align: left; /* li is included here because there's an awkward gap between the bulletpoint/number and the list content */
}

.paragraphBox span { 
	text-align: center;
}

.artBox2 {
	column-gap: 5%;
	padding: 4%;
	background: #13042E;
	text-align: center;
	color: #fff;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row; /* Sort into rows */
	justify-content: space-between;
	align-items: center;
	border: solid #3220A5 medium;
}

.artBox2 img {
	object-fit: cover;
    width: 18vw !important;
    height: auto !important;
 	border: solid transparent medium; /* This is to help with the hover outline effect */
}

footer {
	color: #fff;
	background: linear-gradient(#210650, #110229);
	text-align: center;
	font-size: 12px;
	margin-top: 22vh;
	padding: 12px 0; /* Make it stick to the bottom */
    bottom: 0px;
    width: 100%;
    left: 0;
	border-top: solid #3220A5 medium;
	
}