/* IN-USE FONTS */
@font-face {
	font-family: "Comic Sans MS";
	src: url("/assets/fonts/Comic-Sans-MS.ttf")
}
@font-face {
  font-family: "Comic Sans MS";
  src: url("/assets/fonts/Comic-Sans-MS-Bold.ttf");
  font-weight: bold
}
@font-face {
  font-family: "IndieFlower-Regular";
  src: url("/assets/fonts/IndieFlower-Regular.ttf");
}
@font-face {
	font-family: "Sweet16";
	src: url("/assets/fonts/Sweet16.ttf")
}
@font-face {
	font-family: "Sweet16mono";
	src: url("/assets/fonts/Sweet16mono.ttf")
}



body {
	color:#7d314c;
	background-image:url("/assets/images/139.png");
	background-repeat: repeat;
	font-family: "Comic Sans MS";
}

p {
  font-size: 16px;
  font-family: "Comic Sans MS"
 }
 
h1 {
	font-family: "IndieFlower-Regular";
	font-size:48px;
	font-weight:normal;
	text-align:center
}
  
h2 {
	font-family:IndieFlower-Regular;
	font-size:32px;
	text-align:center;
	padding-top:64px
}

h3 {
  font-family:IndieFlower-Regular;
  font-size:24px
}

a {
  
  font-size: 16;
}

form {
	font-family:"Comic Sans MS";
	font-size:"16px"
}

input {
	font-family:"Comic Sans MS";
	font-size:"16px"
}

#filebrowser {
	p {
		font-family: "Sweet16mono"
	}
	a {
		font-family: "Sweet16mono";
	}
	font-size: 16;
	letter-spacing: 1px;
	ul {
		list-style-type:none;
	}
    width:800px; 
    margin:0 auto; 
    background-color: #ececec;
    border:double;
    padding:20px;
}

.icon {
	width: 16px;
	height: 16px;
	vertical-align: middle;
	margin-right: 5px;
}

style
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 12px 16px;
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/style

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  
}

/*.button-list {
	button {
		width: 25%;
		background-color: #7d314c; /* Match the background color of nav2 */
		color: #e68b8b; /* Match the font color of nav2 */
		border: 2px solid #2a002a; /* Match the border color of nav2 */
		cursor: pointer;}
	button:hover {
		background-color: #e68b8b;
		color: #7d314c;}
}*/

.image-caption-container {
    display: flex;
    flex-direction: column;
	img {
    max-width: 100%;
    height: auto;
    display: block;
	}
}

.image-caption {
	display: flex;
	justify-content: space-between; /* Push the caption to the left and the image to the right */
	align-items: flex-end; /* Align the bottom of the caption with the bottom of the image */
	margin-bottom: 20px; /* Adjust the space between each image-caption pair */
}

.caption {
	margin-right: 10px; /* Adjust the space between the caption and image */
}

.image-caption:last-child {
	margin-bottom: 0;
}

.right-aligned {
	
}

.index {
	font-family: "Comic Sans MS";
	font-size: "16";
	list-style-type: none;
}



/* vertical menu */
body {
    margin: 0;
    display: flex;
    justify-content: center; /* Center the main container horizontally */
}

.page-container {
    display: flex;
    width: 1300px;
    overflow: hidden;
    height: 100vh;
}

.menu {
	width: 200px;
	display: flex;
	text-align: left;
	background-color: #7d314c;
  color: #e68b8b;
  font-family:"Comic Sans MS";
  font-size:16px;
  border:double #e68b8b;
  overflow: auto;
  ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: #7d314c;
    width: 200px;
    }
  li a {
    max-width: 900em;
    text-decoration: none;
    color: #e68b8b;
    padding: 8px;
    display:block;
  }
  a {
    font-family:"Comic Sans MS";
    font-size:16px;
  }
  li {
    border-bottom:2px solid #e68b8b
  }
}

.main-content {
    width: 900px;
    background-color: #e68b8b;
    padding: 20px;
    border:double;
    overflow: auto;
}

.spacer {
    width: 200px;
/*    background-color: rgba(0, 0, 0, 0.1); /* Debugging: light background */
}

/* end of vertical menu */



/* collapsible entries */

.details,
.show,
.hide:target {
  display: none;
}
.hide:target + .show,
.hide:target ~ .details {
  display: block;
}

/* end of collapsible entries */
