
@tailwind base;
@tailwind components;
@tailwind utilities;

*{
  font-family: "Raleway", sans-serif;
}

h1{
  text-shadow: 1px 1px 2px #FFAFCC;
}

#pdutitre{
  text-shadow: 1px 1px white;
}

#avtitre{
  text-shadow: 2px 3px white;
}

#avatitre, #create, #created, #contact-title{
  text-shadow: 3px 3px #FFAFCC;
}

#avis{
  animation: heartbeat 3s ease-in-out infinite both;
}


@keyframes heartbeat {
  from {
    transform: scale(1);
    transform-origin: center center;
    animation-timing-function: ease-out;
  }
  10% {
    transform: scale(0.91);
    animation-timing-function: ease-in;
  }
  17% {
    transform: scale(0.98);
    animation-timing-function: ease-out;
  }
  33% {
    transform: scale(0.87);
    animation-timing-function: ease-in;
  }
  50% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
}

#entree{
  animation: flip-in-hor-bottom 1.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes flip-in-hor-bottom {
  0% {
    transform: rotateX(80deg);
    opacity: 0;
  }
  100% {
    transform: rotateX(0);
    opacity: 1;
  }
}

:root {
      --navy: "#152237";
      --berry: "#8E0839";
      --blush: "#FFAFCC";
      --baby: "#BDE0FE";
      --sky: "#A2D2FF";
      --white: "#FFFFFF";
}