/*used to hide the wordpress tag at the bottom, but be careful because it could make other text that I center be invisible
p.has-text-align-center {
	display: none;
}*/
header {
	position: fixed;
	z-index: 100;
	height: 165px;
	margin-top: 100px;
	width: 100%;
	background-color: #FFFFFF;
	border-bottom: 2px solid #00DAFC;
}

/*note the @media basically is turning off the hover function when people are looking at the website on a phone*/
@media only screen and (max-width: 780px) {
	.h2-subheading {
		display: none;
	}
}

@media only screen and (min-width: 781px) {
	/*hover effect for website images-- turned off
																			.website-image:hover {
																				transform: scale(2);
																				display: block;
																				background: white;
																				border: 5px solid white;
																				outline: 1px solid rgb(204,95,242);
																				transition-delay: .5s;
																			}*/
	.workshop-image:hover {
		transform: scale(2);
		display: block;
		background: white;
		border: 5px solid white;
		outline: 1px solid rgb(0, 218, 252);
		transition-delay: .5s;
	}
	
	.logo-poster-image:hover {
		transform: scale(1.5);
		display: block;
		background: white;
		border: 5px solid white;
		outline: 1px solid rgb(0, 218, 252);
		transition-delay: .5s;
	}
}

/*customize cursor code*/
/*body{cursor:url('https://triciaenns.com/wp-content/uploads/2025/09/icecream-cone_carepng.png'), auto;}*/
.home {
	cursor: url('https://triciaenns.com/wp-content/uploads/2026/05/octapus.png'), auto;
}

.page-id-1045 {
	cursor: url('https://triciaenns.com/wp-content/uploads/2025/09/fries_care.png'), auto;
}

/*ventology page*/
.page-id-1778 {
	cursor: url('https://triciaenns.com/wp-content/uploads/2026/07/ventology-association-international-logo_cursor-1.png'), auto;
}

.customize-cursor {
	cursor: url('https://triciaenns.com/wp-content/uploads/2026/04/diansaur-1.png'), auto;
}

.header_face {
	transition: transform 2s ease-in-out;
}

.header_face:hover {
	transform: rotate(360deg);
}