/*
Theme Name: theme by papyAlfred (homemade)
Author: Valérie Brossault
Author URL: https://www.papyalfred.design
Theme URL : 
Tags: full-site-editing, block-patterns
Text Domain: papyalfred
Requires at least: 6.4
Requires PHP: 7.4
Tested up to: 6.4
Version: 100.0

License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* Styles intended only for the front.*/



/* General
--------------------------------------------- */

@keyframes backFadeIn{
	from {opacity: 0%;}
	to {opacity: 100%;}
}
@keyframes fadeInUp {
  0% { opacity: 0; padding-top: 1em;}
  100% { opacity: 1; padding-top: 0;}
}

/* Site Containers */

body {
	font-family: sans-serif;
}

header,
main.wp-block-group {
	z-index: 0;
}
footer{
	position: fixed;
	left: 1vw;
	width: 98vw;
	bottom: 1em;
	z-index: -500;
}
.alignfull {
	width:  100vw;
	max-width:  100vw;
	margin-left:  calc(50% - 50vw);
}


/* Typographical elements */

p,ol,ul,
.wp-block-cover,
h1, h2, h3, h4, h5, h6
{
	animation: fadeInUp 1.5s;
}

/* Objects */

embed,
iframe,
img,
object,
video {
	animation: backFadeIn 3s;
}
.hide-desktop{
		display: block;
	}
.hide-mobile-tablet{
	display: none;
}

/* Media Queries
-------------------------------------------- */


@media screen and (min-width: 780px) {

}
@media screen and (min-width: 1160px) {
	.hide-desktop{
		display: none;
	}
	
	.hide-mobile-tablet{
		display: block;
	}
}