@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Symbols+2&family=Noto+Serif+Ottoman+Siyaq&display=swap');

/* prevent media from going off-screen
 * maximum width will be the width of its parent,
 * while maintaining proportional scale */
img, picture, video, iframe {
	max-width: 100%;
	height: auto;
}

/* global css rules go first before media queries.
 * here, decide on color, fonts, ect.
 * and use media queries to determine layout */


/* for photography, rose=2024, plum=2025, violet=2024-caffenol */
.rosesolid:hover, .rosekey {
	border: 10px solid #B8336A;
}

.plumdouble:hover, .plumkey {
	border: 10px double #955089;
}

.violetdash:hover, .violetkey {
	border: 10px dashed #726DA8;
}

.tablestyle1 {
	border-spacing: 5px;
	margin: 10px;
	border-collapse: separate;
	caption-side: top;
	overflow-x: auto;
}

.tablestyle1 td, .tablestyle1 th {
	text-align: center;
	padding: 5px;
	empty-cells: hide;
}

#myparent {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	justify-content: space-between;

	font-family: "Noto Serif Ottoman Siyaq", serif;
  	font-weight: 400;
  	font-style: normal;
}

.myheader, nav {
	flex-basis: 85%;
	max-width: 85%;

	font-family: "Noto Sans Symbols 2", sans-serif;
  	font-weight: 400;
  	font-style: normal;
}

#logo {
	flex-basis: 15%;
	max-width: 15%;
	height: auto;
	box-sizing: border-box;
	padding: 10px;
}

h1 {
	margin-bottom: 2px;
}

h2 {
	color: #4A5240;
	margin-top: 2px;
}

nav {
	margin-bottom: 15px;	
}

nav > a {
	margin-left: 10px;
}


p {
	margin-bottom: 15px;
}

img {margin-bottom: 10px;}

footer {
	margin-top: 10px;
	margin-left: 15px;
}

#myleft, #mymain, #myright, #table, #contactform {
	padding: 10px;
	box-sizing: border-box;
}

.hidden {
	padding: 10px;
	box-sizing: border-box;
	display: none;
}

#contactform {
	background-color: #C6B4CF;
	margin: 10px;
	border: 10px double #955089;
}

@media screen and (min-width:768px) {
	#myleft {
		flex-basis: 32%;
		max-width: 32%;
	}

	#mymain {
		flex-basis: 64%;
		max-width: 64%;
	}

	#myright {
		flex-basis: 100%;
		max-width: 100%;
	}

	#table {
		flex-basis: 100%;
		max-width: 100%;
	}
}

@media screen and (min-width:992px) {
	#myleft, #mymain, #myright {
		flex-basis: 32%;
		max-width: 32%;
	}

	#table {
		flex-basis: 100%;
		max-width: 100%;
	}
}

@media screen and (min-width:1200px) {
	#myleft, #mymain, #myright, #table {
		flex-basis: 24%;
		max-width: 24%;
	}

	.hidden {
		display: flex;
		flex-basis: 24%;
		max-width: 24%;
	}
}
