/* -------------------------------
   FONTS
-------------------------------- */
@font-face {
  font-family: 'Louche';
  src: url('Assets/Fonts/Louche-Regular.ttf') format('truetype');
}

body {
    /*background: url('Webzine/Pattern17.gif') repeat;*/
    background: url('Webzine/Fabric1.jpg') repeat;*/
    /*background: url('Webzine/Pattern10.gif') repeat;*/
    font-family: 'Louche', cursive;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.element {
  position: absolute;
  max-width: 300px;
  padding: 1rem;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.2);
}

/* Bloc retour */
.retour {
  background-color: #f5f0e6;
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  border: 1px solid #aaa;
  padding: 0.5rem;
}

.retour a {
  text-decoration: none;
  color: #000;
}

.retour a:hover {
  text-decoration: underline;
}

.fixed-retour {
  position: fixed;
  bottom: 3rem; /* positionnement vertical */
  left: 1rem;
  transform: rotate(-2deg); /* inclinaison */
  z-index: 1000;
}

/* -------------------------------
   ANIMATIONS
-------------------------------- */
@keyframes flotter {
  0%   { transform: translateY(0) rotate(-2deg); }
  50%  { transform: translateY(-5px) rotate(-2.5deg); }
  100% { transform: translateY(0) rotate(-2deg); }
}

.floating {
  animation: flotter 3s ease-in-out infinite;
}