@charset "UTF-8";

@font-face {
  font-family: 'times_italic';
  src: url('../fonts/timesltstd-italic-webfont.woff2') format('woff2'),
    url('../fonts/timesltstd-italic-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'times_roman';
  src: url('../fonts/timesltstd-roman-webfont.woff2') format('woff2'),
    url('../fonts/timesltstd-roman-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}


html,
body {
  height: 100vh;
  /* background-color: red; */
  scroll-behavior: smooth;
}

body {
  scroll-snap-type: y mandatory;
}

.grille-flexible {
  display: flex;
  flex-direction: column;
  height: 100%;
  /* scroll-snap-type: y mandatory;  */
}

.bloc-0 {
  flex: 1;
  height: 50%;
  scroll-snap-align: start;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 50%; /* hauteur maximale */
}

.bloc-0 img {
  object-fit: cover; /* redimensionner l'image */
  width: 100%;
  height: 100%;
}

.bloc-1 {
  scroll-snap-align: start;
  margin: 10px;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 110px;
  border: 10px solid black;
}



.bloc-2 {
  height: 100%;
  scroll-snap-align: start;
  margin-right: 30px;
  margin-left: 30px;
  flex: 1;
  display: flex;
  /* justify-content: center;
  align-items: center; */
}

.texte-image {
  font-family: Arial, Helvetica, sans-serif;
  z-index: 1;
  color: black;
  font-size: 9em;
  text-align: center;
  line-height: 0.8;
  display: flex;
  justify-content: center;
  align-items: center;

  padding-top: 80px;
  padding-right: 10px;
  padding-bottom: 80px;
  padding-left: 10px;
}

.texte-image-2 {
  font-family: Arial, Helvetica, sans-serif;
  color: black;
  font-size: 2.5em;
  text-align: left;
  /* text-align: justify; */
  line-height: 1.2;
  /* letter-spacing: 0.05em;
  word-spacing: 0.1em;
  font-variation-settings: "wght" 400, "opsz" 1; */
  margin-bottom: 60px;
}

a {
  color: white;
  text-decoration: none;
}

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

  /* Appliquer les styles lorsque la largeur de l'écran est inférieure ou égale à 600px */
  body {
    font-size: 12px;
    /* Modifier la taille de la typographie selon vos besoins */
  }
}