﻿/* IcÃ´ne cachÃ©e par dÃ©faut */


max-width: 100%;
box-sizing: border-box;

*,
*::before,
*::after {
  box-sizing: border-box;
}


.landscape-warning {
    display: none;
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    padding: 10px 20px;
    background-color: rgba(255, 0, 0, 0.8);
    color: #fff;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    animation: blink 1s infinite; /* Animation clignotante */
}

/* Animation de clignotement */
@keyframes blink {
    50% {
        opacity: 0;
    }
}

.responsive-paragraph {
  padding: 0 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.responsive-paragraph p {
  font-size: 1rem;
  line-height: 1.6;
  text-align: justify; /* ou 'left' si tu préfères */
}
