

/* Pour l'écriture Le Pain De Matthieu */

 .logo {
  font-family: 'Bebas Neue', sans-serif;
  display: inline-flex;
  align-items: center; /* ou center selon ton rendu préféré */
  gap: 0.25em;
}

.logo-img {
  height: 1.8em; /* ajuste la hauteur pour s’aligner avec le texte */
  margin-right: 0.3em;
  vertical-align: middle;
}

    .logo .www {
      font-size: 0.9em;
      color: #00ae7d; /* C90 M0 J71 N0 */
      text-decoration: underline double;
      text-decoration-thickness: 2px;
      text-underline-offset: 3px;
      letter-spacing: 4px;
    }

.logo .le {
  font-size: 1.3em;
  color: #2b3f8c;
  letter-spacing: 4px;
  position: relative;       /* nécessaire pour ::after */
  display: inline;          /* garder l’alignement normal du texte */
  line-height: 1;           /* éviter tout décalage vertical */
}



    .logo .pain {
      font-size: 2.0em;
      color: #2b3f8c; /* C100 M90 J10 N0 */
      text-shadow: 3px 3px #00ae7d; /* ombrage vers la droite et le bas */
      letter-spacing: 5px;
    }
    
        .logo .fr {
      font-size: 0.9em;
      color: #00ae7d; /* C90 M0 J71 N0 */
      text-decoration-thickness: 2px;
      text-underline-offset: 3px;
      letter-spacing: 4px;
    }
    
    
.logo-container.grand {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10vh auto;
  width: fit-content;
  border: 3px solid white;
  border-radius: 15px 0 15px 0;
  padding: 15px; 
  background-color: rgba(255, 255, 255, 0.8);
  transform: scale(3);
  transform-origin: center center;
}

/* Tablettes / grands écrans */
@media (max-width: 1280px) {
  .logo-container.grand {
    transform: scale(2);
    padding: 15px;
  }
}

<!-- /* Smartphones */
@media (max-width: 900px) {
  .logo-container.grand {
    transform: scale(1.2);
    padding: 10px;
    border-width: 2px;
  }
}-->


@media (max-width: 480px) {
  .logo-container.grand {
    display: none;
  }
}



.logo-container.texte {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10vh auto;
  width: fit-content;
  transform: scale(1);
  transform-origin: center center;
}


	header {
		margin-bottom: 1em;
	}

		header p {
			display: block;
			margin: 1em 0 0 0;
			padding: 0 0 0.5em 0;
		}
		
		
		/* Header */

	#header {
		position: fixed;
		z-index: 10000;
		left: 0;
		top: 0;
		width: 100%;
		background: rgba(255, 255, 255, 0.95);
		height: 3em;
		line-height: 3em;
		box-shadow: 0 0 0.15em 0 rgba(0, 0, 0, 0.1);
	}

		#header h1 {
			position: absolute;
			left: 1em;
			top: 0;
			height: 3em;
			line-height: 3em;
			cursor: default;
		}

			#header h1 a {
				font-size: 1em;
			}

		#header nav {
			position: absolute;
			right: 0.5em;
			top: 0;
			height: 3em;
			line-height: 3em;
		}

			#header nav ul {
				margin: 0;
			}

				#header nav ul li {
					display: inline-block;
					margin-left: 0em;
					font-size: 0.9em;
				}

					#header nav ul li a {
						display: block;
						color: inherit;
						text-decoration: none;
						height: 3em;
						line-height: 3em;
						padding: 0 0.25em 0 0.25em;
						outline: 0;
					}

		@media screen and (max-width: 736px) {

			#header {
				height: 3em;
				line-height: 3em;
			}

				#header h1 {
					text-align: center;
					position: relative;
					left: 0;
					top: 0;
					height: 3em;
					line-height: 3em;
				}

					#header h1 a {
						font-size: 1em;
					}

				#header nav {
					display: none;
				}

		}





*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    margin: 20px;
    background-color: #2fb383;
    min-height: 100vh;
    
}

.content{
    padding: 20px;
    background-color: #fff;
    border-radius: 6px;
}

.content p{
    letter-spacing: 1px;
    margin-top: 10px;
}
.content h1{
    letter-spacing: 2px;
    color: blue;
}

.timeline{
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}
.timeline::after{
    content: '';
    position: absolute;
    width: 6px;
    background-color: #fff;
    border-radius: 6px;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;

}

.container{
    padding: 10px 40px;
    position: relative;
    width: 50%;
}
.container::after{
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #fff;
    border: 4px solid blue;
    right: -17px;
    top: 15px;
    z-index: 1;
}

.left{
    left: 0;
}
.right{
    left: 50%;
}
.right::after{
    left: -15px;
}

.left::before{
    content: '';
    height: 0;
    width: 0;
    position: absolute;
    top: 22px;
    z-index: 1;
    right: 30px;
    border: medium solid #fff;
    border-width: 10px 0px 10px 10px;
    border-color: transparent transparent transparent #fff;
}
.right::before{
    content: '';
    height: 0;
    width: 0;
    position: absolute;
    top: 22px;
    z-index: 1;
    left: 30px;
    border: medium solid #fff;
    border-width: 10px 10px 10px 0px;
    border-color: transparent #fff transparent transparent;
}