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


.rotating {
  width: 100px;
  height: 100px;
  animation: rotation 10s linear infinite; /* Sets the animation */
}

@keyframes rotation {
  0% {
    transform: rotate(0deg); /* Starting position */
  }
  50% {
    transform: rotate(180deg); /* Rotating to 180 degrees */
  }
  100% {
    transform: rotate(360deg); /* Rotating back to 0 degrees (completing the rotation) */
  }
}

.skew {
	transform: skew(1deg, 2deg);
}

.ratbox {
	flex-basis: 85%;
	max-width: 85%;
	box-sizing: border-box;
}

/*skew transformation/
.shakers {
  text-align:center;
  transform: 
    rotate(30deg) 
    skew(5deg,10deg)
    scale(1.1) 
    translateY(5px) 
    translateX(5px);
}*/

.grow {
  width: 130px;
  height: 60px;
  background: red;
  transition: width 1s;
}
.grow:hover {
  width: 140px;
}

/*   <:)~~  ~~(,),">   */

/* 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 */

.dropdown, .contactme {
	display: inline-block;
}

.contactme, .dropdown button {
	background-color: #B8336A;
	color: white;
	padding: 20px 30px;
	border: none;
	cursor: pointer;
	z-index: 2;
}

.dropdown a {
	display: block;
	color: white;
	text-decoration: none;
	padding: 10px 15px;
}

.dropdown .content {
	display: none;
	position: absolute;
	background-color: #726DA8;
	min-width: 80%;
	text-align: center;
	box-shadow: 2px 2px 5px;
	z-index: 1;
}

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

.content > a:hover {
	filter: brightness(80%);
	
}

.contactme {
	background-color: #726DA8;
}

.contactme:hover, .dropdown:hover button {
	filter: brightness(80%);
}

/* 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;
	cursor: pointer;
}

#logo:hover {
	filter: brightness(80%);
}

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%;
	}
	.contactme, .dropdown button {
		padding: 10px 15px;
	}
	.grow{
	  width: 100px;
	  height: 35px;
	}
	.grow:hover {
	  width: 110px;
	}
	.dropdown .content {
		min-width: 20%;
		text-align: left;
	}
}

@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%;
	}

	.contactme, .dropdown button {
		padding: 10px 15px;
	}
	.grow{
	  width: 100px;
	  height: 35px;
	}
	.grow:hover {
	  width: 110px;
	}

	.dropdown .content {
		min-width: 20%;
		text-align: left;
	}
}
