@font-face {
	font-family: sans-serif; 
	/*
	src: url('Coda-ExtraBold.ttf');
	src: url('Coda-ExtraBold.ttf') format ('truetype'); */
}

h1 {
	font-family: sans-serif, courier;
	font-size: 250%;
}

h3  {
	font-family: sans-serif, courier;
	font-size: 150%;
}
p.left {					/* this is making a style for specific paragprahs that have class = left */
	font-family: sans-serif ; /* Try: copperplate Helvectica */
	text-align: left;
	line-height: 1.5;
	font-size: 140%;
	max-width: 50%;
}

p.party {					/* this is making a style for specific paragprahs that have class = right */
	font-family: sans-serif; /* Try: copperplate Helvectica */
	text-align: right;
	line-height: 1.5;
	font-size: 140%;
}

hr.new1 {
  border-top: 2px solid black;
}
body {
	background-color: #33c0cc;
	background-image: url("cco_files/Background1.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	text-align: center; 
	padding: 2% 0 0 0;
}
body > img{
	filter: opacity(0.5);
}

main {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 5%;
	background-color: transparent;
}
header {
	padding: 0%;
	background-color: transparent;
	
	
}
.flex-container {
	display: flex;

	justify-content: space-between; /* 
	background-image: url("cco_files/logo.png");
	background-size: contain;
	background-repeat: no-repeat;*/
	
}
.flex-container > div {
	font-family: sans-serif;
	margin: 0%;
	padding: 0%;
}


.logo {
	background-color: transparent;
	background-size: contain;
	background-repeat: no-repeat;
	justify-content: left;
	
}
#logo {
	width:35%;
	float:left;
}
.navbar {
	height: 20%;
	background-color: transparent;
	justify-content: center;
	align-items: center;
	width: auto;
	display: flex;

}
a:link, a:visited {
	text-decoration: none;
	color: #000000;
}
a:hover, a:visited:hover {
	text-decoration: none;
	color: #36a8b2;
}	

a:active {
	color: pink;
}
.topimage {
	height: auto;
	background-color: transparent;
	border: 0px solid pink;
	margin-bottom: 2px;

}

#topimage {   /* this is giving you special rights to a certain image with img id = topimage*/
  
}
.topimage > img {
	max-width: 100%;
	max-height: 350px;
	object-fit: cover;
	border: 2px solid black;
	
}

.content {
	background-color: transparent;
	border: 0px solid black;
	padding: 1%;
	float: left;
	line-height: 1.8;
	font-size: 120%;
	text-align: left;
}

.left {
	background-color: transparent;
	width: 72%;
	float: left;
}


.topic {
	background-color: transparent;
	border: none;
	padding: 2px;
	float: left;
	width: 100%;
	height: auto;
	
}

.topic > img {
	float: left;
	height: auto;
	max-height: 100%;
	padding: 0px;
	width:50%;
	
}

div.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

div.gallery-item {
  margin: 5px;
  border: 1px solid #ccc;
  width: 15%;
}

div.gallery-item:hover {
  border: 1px solid #777;
}

div.gallery-item img {
  width: 100%;
  height: auto;
}

.right {
	background-color: transparent;
	width: 25%;
	float: right;

}

.right > img {
	height: auto;
	display: block;
	max-width: 100%;
	object-fit: cover;
	margin-bottom: 20px;
	border-radius: 8px;
	
}

.button {
  border: none;
  color: white;
  padding: 10px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 25px;
}

.button1 {background-color: #04AA6D;} /* Green */
.button2 {background-color: #008CBA;} /* Blue */

footer {
	display: block;
	font-family: sans-serif;
	line-height: 1.5;
}

/* Solid border */
hr.solid {
  border-top: 3px solid #bbb;
}

@media screen and (max-width: 600px) {
	.left {
		width: 100%;
	}
	.right {
		width: 100%;
	}
	.content{
		font-size: 80%;
	}
	div.gallery-item{
	width: 28%;
	}
	
}

