﻿
body{padding: 0; background-image: url("bg.png"); #6B90AD; width: 100%; height: 100%; margin: 0; padding: 0;}

h1{
font-family: Cambria Math, fantasy;
 color: #282828;
 margin: 0;
 padding-top:10px;
 font-size: 50px;
 line-height: 44px;
 letter-spacing: -2px;
 font-weight: bold;
 text-align:center;
}

/*************************************************************************/

section.card {
  position: relative;
  width: 250px;
  height: 300px;
  background-color: #F3E3A8;
  border-radius: 10px;
  display: flex; display: inline-block; 
  align-items: center;
  justify-content: center;
  overflow: hidden;
  perspective: 1000px;
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  font-family: Georgia;
  color: #282828;
  font-size: 35px;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px #000000;
  background-color: #f2f2f2;
  color: #ffffff;
}

.card__content {
  color: #000000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0px;
  box-sizing: border-box;
  background-color: #EEEEFF;   /* COULEUR BG */
  transform: rotateX(-90deg);
  transform-origin: bottom;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);

}

.card:hover .card__content {
  transform: rotateX(0deg);
}

.card__title {
  margin: 0;
  padding-left: 5px;
  color: #000000;

  font-family: Georgia;
  color: #282828;
  font-size: 35px;
}

.card:hover svg {
  scale: 0;
}

/* Commands to change the shadows in dark mode
@media (prefers-color-scheme: dark) {
  .card:hover {
  box-shadow: 0 8px 16px #000000;
  }
}*/

/*************************************************************************/

#main{margin: 10px;}

footer
{
	background: #2B2A33;
	text-align:center;
	bottom:0;
	border-top: solid 1px #000000;
	width:100%;
	display:inline-block;
	vertical-align:top;
	font-size:13px;
	padding-top:20px;
	padding-bottom:20px;
	margin-left: 0;
	text-align: center;
}

footer a {
	text-decoration:none;
	font-family: "Avant Garde", Avantgarde, "Century Gothic", CenturyGothic, "AppleGothic", sans-serif;
	font-size: 30px;
	text-align: center;
	color: #EEEEFF;
}

footer a:hover {color: #F8FBCF;}




