* {
    box-sizing: border-box;
  }
  
  :root {
    /* Breakpoints */
    /* Typography */
    font-family: Inter, sans-serif;
    font-size: 10px;
    --font-size-100: 0.625rem;
    --font-size-200: 0.75rem;
    --font-size-300: 0.875rem;
    --font-size-350: 0.925rem;
    --font-size-400: 1rem;
    --font-size-500: 1.25rem;
    --font-size-600: 1.5rem;
    --font-size-650: 1.75rem;
    --font-size-700: 2.125rem;
    --font-size-800: 3rem;
    --font-size-900: 3.75rem;
    --font-size-titleSection: 5.7rem;
    --font-size-topBar: 2.5rem;
    --font-size-logoTop: 7rem;
    --font-size-bulleGrandTxt: 2.125rem;
    --font-size-bullePetitTxt: 1.5rem;
    --font-size-logoContact: 3.5rem;
    /* Color variables */
    --white: #ffffff;
    --black: #000000;
    --background: #f8f3ec;
    --surface: #f2e8da;
    --error: #f22222;
    --orange-100: #fde6ca;
    --blue-100: #dce1f4;
    --red-300: #ff7c7c;
    /* Primary 700 */
    --primary-900: #2f40cd;
    --primary-800: #2863ec;
    --primary-700: #2176ff;
    --primary-600: #108aff;
    --primary-500: #0099ff;
    --primary-400: #28a9ff;
    --primary-300: #58b9ff;
    --primary-200: #8dceff;
    --primary-100: #bbe0ff;
    --primary-050: #e3f3ff;
    --primary-variant: #0c1137;
    /* Secondary 400 */
    --secondary-900: #f57826;
    --secondary-800: #f7942e;
    --secondary-700: #f8a431;
    --secondary-600: #fab635;
    --secondary-500: #fbc33a;
    --secondary-400: #fcca46;
    --secondary-300: #fdd661;
    --secondary-200: #fde18d;
    --secondary-100: #feecb9;
    --secondary-050: #fef8e3;
    --secondary-variant: #e3aa4f;
    /* Blue Gray */
    --blue-gray-900: #263238;
    --blue-gray-800: #37474f;
    --blue-gray-700: #455a64;
    --blue-gray-600: #546e7a;
    --blue-gray-500: #607d8b;
    --blue-gray-400: #78909c;
    --blue-gray-300: #90a4ae;
    --blue-gray-200: #b0bec5;
    --blue-gray-100: #cfd8dc;
    --blue-gray-050: #eceff1;
    /* Green */
    --green-900: #09311e;
    --green-600: #08a045;
    --green-400: #54ef92;
    --green-100: #d7eed9;
  
    --logoFooterHover: white;
    /* Scroll */
    scroll-behavior: smooth;
    scroll-padding-top: 1rem;
  }
  
  
  html{
      width:100vw;
  }
  body {
    margin: 0;
    padding: 0;
    height: 100vh;

  }
  
  a {
    text-decoration: none;
  }
  
  /* ids liés a des scripts*/
  #montreContenu {
    visibility: hidden;
    display: none;
  }
  
  /*Balises html*/
  
  
  /*Classes*/
  
  
  
  
  /****** SECTIONS ************/
  .foreground {
    height: auto;
      width:100vw;

    position: relative;
    top: 0;
    left: 0;
    background-color: rgb(24, 24, 24);
    margin: 0 0;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 280px;
  
  }
  
  .foreground::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    /* Couleur de fond de l'angle */
    transform-origin: top left;
    z-index: -1;
    /* Place l'angle derrière le contenu de la section */
  }
  
  .foreground::before {
    border-bottom: 100px solid transparent;
    /* Hauteur de l'angle */
    border-left: 100vw solid #f0f0f0;
    /* Largeur de l'angle et couleur de fond */
  }
  
  .foreground h1 {
    margin-bottom: 30px;
    margin-top: 60px;
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    color: white;
    font-family: 'Righteous', serif;
    font-size: var(--font-size-titleSection);
    text-shadow: .03em .03em 0 rgb(45, 45, 45);
  }
  
  .foreground h1:after {
    content: attr(data-shadow);
    position: absolute;
    top: .06em;
    left: .06em;
    z-index: -1;
    text-shadow: none;
    background-image:
      linear-gradient(45deg,
        transparent 45%,
        hsla(48, 20%, 90%, 1) 45%,
        hsla(48, 20%, 90%, 1) 55%,
        transparent 0);
    background-size: .05em .05em;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation-name: shad-anim 15s linear infinite;
  }
  
  .foreground p {
    margin: 0 0;
    color: white;
    text-align: center;
    font-family: "space mono", sans-serif;
    font-size: var(--font-size-500);
  }
  
  .foreground_item_container {
    width: 90%;
  }
  
  /********************************* TITRE PRINCIPAL****************************/
 /*
  .background {
    height: 100vh;
  background-image:
  radial-gradient(farthest-corner, rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.8));
background-position: 25% 80%;
background-size: 100% 100%;
background-repeat: no-repeat;
background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  */
  /*
  .background::after {
    background-image:
      radial-gradient(farthest-corner, rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0.8));
    background-position: 25% 80%;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;  
}
  
  .background {
    content: "";
    position: fixed; /* Fond d'écran fixe simulé */ /*
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url("../pictures/Buli_SoundProfil.jpeg");
    background-position: 100% bottom;
    background-size: auto 95vh;
    background-repeat: no-repeat;
  }
  */
  /*
  .background {
    height: 100vh;
    background-image:
      radial-gradient(farthest-corner, rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0.8)), url("../pictures/Buli_SoundProfil.jpeg");
    background-position: 25% 80%, 35% bottom;
    background-size: 100% 100%, auto 95vh;
    background-repeat: no-repeat, no-repeat;
    background-attachment: fixed, fixed;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  */
  .background {
    height: 100vh;
    background-image:
      radial-gradient(farthest-corner, rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0.8)), url("../pictures/Buli_SoundProfil.jpeg");
    background-position: 25% 80%, 10% bottom;
    background-size: 100% 100%, auto 100vh;
    background-repeat: no-repeat, no-repeat;
    background-attachment: fixed, fixed;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .background_bas {
    height: 100vh;
    background-image:
      radial-gradient(farthest-corner, rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0.8)), url("../pictures/Buli_SoundProfil.jpeg");
    background-position: 25% 80%, 10% bottom;
    background-size: 100% 100%, auto 100vh;
    background-repeat: no-repeat, no-repeat;
    background-attachment: fixed, fixed;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
/*TITRE BULIBULI*/
.wrapper1 {
  height: calc(var(--font-size-logoTop)*2.5);
  width:auto;
  font-size: var(--font-size-logoTop);
  position: relative;
  overflow: hidden;
   mix-blend-mode: screen;
}
.wrapper1 p {
  font-family: Impact, 'Anton', Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  visibility: hidden;
  font-size: var(--font-size-logoTop);
}

.wrapper1.invert span {
  color: black;
  /*    color: #484848;*/
}

.wrapper1.invert span::before {
-webkit-text-stroke: 0.1em var(--color);
}

.wrapper1 span {
  --color: #ffba11;
  font-family: Impact, 'Anton', Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-weight: 700;
  font-style: italic;
  display: block;
  position: absolute;
  top:0;
  left:50%;
  color: rgba(26, 1, 59, 0.9);
  letter-spacing: -.005em;

}

.wrapper1 span::before,
.wrapper1 span::after {
  content: attr(data-text);
  display: block;
  position: relative;
  transform: translateX(-50%);
  padding: 0 0;
}

.wrapper1 span::before {
  position: absolute;
-webkit-text-stroke: 0.1em black ;
z-index: 0;
}

.wrapper1 span:first-child {
  transform: translate(-0.255em, -0.25em);
}

.wrapper1 span:last-child {
  --color: red;
  transform: translate(0.155em, 0.65em);
}




  /* NAVBAR HAUT*/
  .Navbarbas {
    height: auto;
    width: 100vw;
    display: flex;
    justify-content: center;
    text-align: center;
    position: fixed;
    z-index: 3;
    padding-top: 1vh;
    min-width: 280px;
  
  }
  
  .navList {
    display: flex;
    justify-content: center;
    list-style: none;
    width: 100vw;
    min-width: 280px;
  
    background-color: rgb(0, 0, 0, 0.444);
    border-radius: 12px;
    border-width: 0.5px;
    border-color: #ffba11;
    border-style: groove;
    border-top-width: 3px;
    padding: 0 0;
  }
  
  .nav-item {
    font-family: "Anton";
    font-weight: 700;
    font-size: var(--font-size-topBar);
    letter-spacing: 0.18rem;
    margin: auto;
    padding: 0.44rem 0rem;
  }
  
  .nav-link {
    color: #ffba11;
    padding: 0.25rem 0rem;
  }
  
  .nav-link:hover {
    color: red;
  }
  
  footer {
    height: 10vh;
    min-height: 60px;
    max-height: 75px;
    min-width: 280px;
  
  }
  
  /* NAVBAR BAS*/
  .navbar {
    display: flex;
    justify-content: center;
    background-color: rgb(24, 24, 24);
    font-size: var(--font-size-500);
    padding: 0 0;
  }
  
  .navbar a {
    color: white;
    margin: 0 2rem;
    text-decoration: none;
    margin: 0px 0;
  }
  
  .navbar a:hover {
    color: #ffba11;
  }
  
  /***************************************/
  
  
  /******************************SECTION MUSIC***********************************/
  .SoundCloudPlayer {
    width: 90%;
    max-width: 750px;
    min-height: 450px;
  }
  
  #music button:first-of-type {
    margin: 20px 0;
    width: 150px;
    height: 28px;
    background-color: gray;
    font-size: var(--font-size-Boutons);
    color: white;
    border-radius: 15px;
    border-width: 2px;
    border-color: white;
  
  }
  
  #music button:first-of-type:hover {
    background-color: rgb(65, 65, 65);
  }
  
  #music>div:nth-of-type(2) {
    display: none;
    visibility: hidden;
  }
  
  /*LOGO PLATEFORMES ECOUTES*/
  #music>div:nth-of-type(2)>div:first-child {
    display: flex;
    justify-content: center;
    align-items: center;
  
  }
  
  #music>div:nth-of-type(2)>div:first-child>div:first-of-type {
    height: auto;
    width: 20%;
    min-width: 100px;
    max-width: 200px;
    margin: 5vw 10vw 5vw 0;
  }
  
  #music>div:nth-of-type(2)>div:first-child>div:first-of-type:hover {
    transform: scale(1.2);
  }
  
  #music>div:nth-of-type(2)>div:first-child>div:nth-of-type(2) {
    height: auto;
    width: 33%;
    min-width: 135px;
    max-width: 250px;
    margin: 4vw 0 5vw 0;
  }
  
  #music>div:nth-of-type(2)>div:first-child>div:nth-of-type(2):hover {
    transform: scale(1.25);
  }
  
  
  
  
  
  
  /*******************VIDEO IN BACKGROUND**********************/
  /********* IDs************/
  
  /********* class************/
  .backVid-section {
    overflow: hidden;
    height: 15vh;
    /* Created with https://www.css-gradient.com */
    background: #E2F1E4;
    background: -webkit-radial-gradient(top left, #E2F1E4, #0C032D);
    background: -moz-radial-gradient(top left, #E2F1E4, #0C032D);
    background: radial-gradient(to bottom right, #E2F1E4, #0C032D);
  }
  
  video.fullscreen {
    z-index: -1;
    object-fit: cover;
    padding: 0 0;
    margin: 0 0;
    width: 100vw;
    height: 100%;
    opacity: 0.44;
  
    &::-webkit-media-controls {
      display: none !important;
    }
  }
  

  /******************************BIOGRAPHY***********************************/
  .biotext_container > div:first-of-type{
    display: flex;
    justify-content: center;
  }
  .biotext_container p {
    font-size: var(--font-size-600);
    color: #313131;
    margin: 2vh 2vw;
    text-align: justify;
  }
  .bio-btn-container p{
    margin:0 0;
  }
  
  .bio-btn{
    display: flex;justify-content: center; align-items: center;
    border:none; border-radius: 50px;
    padding: 0 0;
    background-color: transparent;
    height: 150px;
    width:150px;
    cursor: pointer;
  }
  .bio-btn > img{
    height: 75px;
    width: 75px;
  }
  .bio-btn-active{
    filter:blur(0px);
  }
  .bio-btn-active>img{
    box-shadow: 0px 0px 5px 5px rgb(0,0,0,0.2);
    border-radius: 50px;

  }
  
  .bio-btn-unactive{
    filter:blur(1px);
  }

  .bioText_Francais{
    visibility: visible;
    display: block;
  }
  .bioText_Anglais{
    visibility: hidden;
    display: none;
  }
  .bioText_Portugais{
    visibility: hidden;
    display: none;
  }
  /******************************SECTION about***********************************/
  #about {
    /*background-color: rgb(36, 35, 35);*/
    background-color: rgb(65, 65, 65);
  
  }
  
  #about>div:first-of-type {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  #about .img-fluid {
    width: auto;
    max-width: 75%;
    height: 30vh;
    object-fit: cover;
  }
  
  .textAbout p {
    text-align: justify;
    line-height: 1.9;
  }
  
  .carouselAbout {
    margin: 4vh 0;
    height: auto;
    width: 90%;
    max-width: 750px;
  }
  
  .carousel-indicators {
    margin-top: 10vh;
  }
  
  
  .carousel-control-next-icon,
  .carousel-control-prev-icon {
    min-width: 20px;
    max-width: 40px;
    min-height: 20px;
    max-height: 40px;
  }
  
  .carousel-control-next-icon {
    margin-left: 12vw;
  }
  
  .carousel-control-prev-icon {
    margin-right: 12vw;
  }
  
  .carousel-item {
    margin-bottom: 4vh;
    text-align: center;
  }
  
  #carousel_Video .carousel-control-next-icon,
  #carousel_Video .carousel-control-prev-icon {
    width: 18vw;
    height: 18vw;
  }
  
  .carousel-control-next-icon,
  .carousel-control-prev-icon {
    width: 18vw;
    height: 18vw;
  }
  
  
  .tiles-textcontent {
    width: 100%;
    min-height: 40vh;
    max-height: 65vh;
    padding: 0 10vw 0 10vw;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  
  /* center the blockquote in the page */
  .blockquote-wrapper {
    display: flex;
    max-height: auto;
    padding: 0px 2vh;
    max-width: 550px;
    min-width: 250px;
  }
  
  /* Blockquote main style */
  .blockquote {
    position: relative;
    font-family: 'Barlow Condensed', sans-serif;
    margin: 1vw auto;
    align-self: center;
  }
  
  /* Blockquote header */
  .blockquote h1 {
    font-family: 'Abril Fatface', cursive;
    position: relative;
    /* for pseudos */
    color: #ffba11;
    font-size: var(--font-size-bulleGrandTxt);
    font-weight: normal;
    line-height: 1.5;
    margin: 0 0;
    border: solid 0.75vh;
    border-radius: 20px;
    padding: 3vh;
  }
  
  /* Blockquote right double quotes */
  .blockquote h1:after {
    content: "";
    position: absolute;
    border: 0.75vh solid #ffba11;
    border-radius: 0 50px 0 0;
    width: 50px;
    height: 35px;
    top: 100%;
    left: 10%;
    border-bottom: none;
    border-left: none;
    z-index: 2;
  }
  
  .blockquote h1:before {
    content: "";
    position: absolute;
    width: 80px;
    border: 0.75vh solid rgb(65, 65, 65);
    bottom: -0.8vh;
    left: 45px;
    z-index: 2;
  }
  
  .blockquote h5 {
    padding-top: 5%;
    padding-left: 60%;
    font-size: var(--font-size-bullePetitTxt);
    color: white;
  }
  
  #about>button:first-of-type {
    margin: 2vh 0;
    width: 30%;
    min-width: 150px;
    max-width: 250px;
    height: 35px;
    background-color: gray;
    font-size: var(--font-size-Boutons);
    color: white;
    border-radius: 25px;
    border-width: 2px;
    border-color: white;
  }
  
  #about>button:first-of-type:hover {
    background-color: rgb(65, 65, 65);
  }
  
  #about>div:last-of-type {
    display: none;
    visibility: hidden;
    width: 90%;
  }
  
  #about>div:last-of-type>div:first-of-type {
    padding: 5vh 0px 0px 0px;
    background-color: #fff;
    color: #313131;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%'%3E%3Cfilter id='noise' x='0' y='0'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='777' numOctaves='10' result='noisy'/%3E%3CfeColorMatrix type='matrix' in='noisy' values='1.2 0 0 0 0 0 1.2 0 0 0 0 0 1.2 0 0 0 0 0 0.6 0'/%3E%3C/filter%3E%3Crect x='0' y='0' width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    border-radius: 15px;
    border: 0.75vh solid rgb(65, 65, 65);
    overflow: scroll;
    height: 70vh;
    box-shadow: 6px -6px rgb(90, 90, 90);
    margin:10px 0 40px 0;
  }
  

  
  /******************************SECTION video***********************************/
  
  /********* IDs************/
  
  #video {
    background-color: rgb(24, 24, 24);
  }
  
  #video.foreground h1 {
    margin-bottom: 15px;
  }
  
  /*=======CAROUSEL VIDEO YOUTUBE=======*/
  .carousel_video {
    width: 100%;
    max-width: 850px;
  }
  
  .carousel-indicators {
    position: absolute;
    bottom: -0.1rem;
  }
  
  
  .video .youtube {
    background-color: #000;
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
    /*  cursor: pointer;*/
  }
  
  .carousel-control-prev {
    margin-left: 5vw;
    width: 12.5vw;
    height: auto;
  }
  
  .carousel-control-next {
    margin-right: 5vw;
    width: 12.5vw;
    height: auto;
  }
  
  .youtube img {
    
    width: 100%;
    top: -16.82%;
    left: 0;
    opacity: 0.7;
  }
  
  .youtube .play-button {
    width: 90px;
    height: 60px;
    background-color: #333;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
    z-index: 1;
    opacity: 0.8;
    border-radius: 6px;
  }
  
  .youtube .play-button:before {
    content: "";
    border-style: solid;
    border-width: 15px 0 15px 26.0px;
    border-color: transparent transparent transparent #fff;
  }
  
  .youtube img,
  .youtube img,
  .youtube iframe,
  .youtube .play-button,
  .youtube .play-button:before {
    position: absolute;
  }
  
  .youtube .play-button,
  .youtube .play-button:before {
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
  }
  
  .youtube iframe {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
  }
  
  .video {
    display: block;
    width: 90vw;
    margin: 1rem auto 0px auto;
    max-width: 100%;
  }
  
  
  
  
  
  /*******************CONTACT**********************/
  /********* IDs************/
  
  #contact>button:first-of-type {
    margin: 2vh 0;
    min-width: 150px;
    max-width: 350px;
    min-height: 37px;
    max-height: 57px;
    background-color: gray;
    color: white;
    font-size: var(--font-size-Boutons);
    border-radius: 20px;
    border-width: 2px;
    border-color: white;
  }
  
  #contact>button:first-of-type:hover {
    background-color: rgb(65, 65, 65);
  }
    /*
  #contact>div:last-of-type {
    display: none;
    visibility: hidden;
    width: 90%;
    flex-direction: column;
    align-items: center;
    padding-top: 30px;
  }
  */

  .boutonAddList a{
    color:white;
  }
  
  
  /********* IDs************/
  #contact {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image:
      radial-gradient(farthest-corner, rgba(0, 0, 0, 0.1),
        rgba(24, 24, 24, 0.01)), url("../pictures/plancheBois_ContactMe.webp");
    background-position: 25% 80%, 10% bottom;
    background-size: 100% 100%, 100% 100%;
    background-repeat: no-repeat, no-repeat;
    background-attachment: fixed, fixed;
  }
  
  
  
  #contact .footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  #contact .footer_logo_container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 15vw;
    max-height: 80px;
    width: 15vw;
    max-width: 80px;
    border-radius: 50%;
    border-color: white;
    border-width: thin;
    border-style: solid;
    background-color: gray;
    margin: 0.5vw 2.5vw 4.5vw 2.5vw;
    border-color: var(--logoFooterHover);
  
  }
  
  #contact .footer_logo_container:hover {
    --logoFooterHover: #ffba11;
    transform: scale(1.25);
  }
  
  #contact .logo_footer {
    color: var(--logoFooterHover);
    font-size: var(--font-size-logoContact);
  }
  
  
  
  
  /********* Class *********/
  #contact .foreground_item_container {
    width: 100%;
    max-width: 850px;
  
  }

  
  
  
  
  
  
  
  /*******************FOOTER**********************/
  /********* IDs************/
  
  
  /********* Class *********/
  #footer {
    height: 10vh;
  }
  
  .banière {
    width: 100%;
    min-height: 40px;
    max-height: 60px;
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
  }
  
  #messageBanière {
    animation: scroll-left 5s linear infinite;
    white-space: nowrap;
  }
  
  @keyframes scroll-left {
    0% {
      transform: translateX(0%);
    }
  
    100% {
      transform: translateX(100%);
    }
  }
  
  footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    text-align: center;
    background-color: rgb(65, 65, 65);
    color: white;
    z-index: 5;
  }
  
  
  #footer .foreground_item_container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
  }
  
  #footer .footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
  
  }
  
  #footer .footer_logo_container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.5vw 1vw 0.5vw 1vw;
  }
  
  #footer .footer_logo_container:hover {
    transform: scale(1.1);
  }
  
  #footer .footer_logo_container a {
    height: 27px;
    width: 27px;
    border-radius: 50%;
    border-color: gray;
    background-color: gray;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  #footer .logo_footer {
    color: rgb(65, 65, 65);
    font-size: var(--font-size-300);
  }
  
  

/*mobile écran taille s*/
@media only screen and (max-width: 320px) {
  :root {
    /* Breakpoints */
    /* Typography */
    font-family: Inter, sans-serif;
    font-size: 10px;
    --font-size-100: 0.625rem;
    --font-size-200: 0.75rem;
    --font-size-300: 1.5rem;
    --font-size-350: 0.925rem;
    --font-size-400: 1.22rem;
    --font-size-500: 1.5rem;
    --font-size-600: 1.7rem;
    --font-size-650: 1.75rem;
    --font-size-700: 2.125rem;
    --font-size-800: 3rem;
    --font-size-900: 3.75rem;
    --font-size-topBar: 1.688rem;
    --font-size-logoTop: 7rem;
    --font-size-titleSection: 3.8rem;
    --font-size-bulleGrandTxt: 1.725rem;
    --font-size-bullePetitTxt: 1.2rem;
    --font-size-logoContact: 3.5rem;
    --font-size-Boutons: 1.25rem;
    /* Scroll */
    scroll-behavior: smooth;
    scroll-padding-top: 1rem;
  }
  .background {
    height: 100vh;
    background-position: 25% 80%, 33% bottom;
    background-size: 100% 100%, auto 95vh;
  }
    .background_bas {
    height: 100vh;
    background-position: 25% 80%, 33% bottom;
    background-size: 100% 100%, auto 95vh;
  }
  #contact {
    height: auto;
    background-image:
      radial-gradient(farthest-corner, rgba(0, 0, 0, 0.1),
        rgba(24, 24, 24, 0.01));
    background-position: 25% 80%;
    background-size:  100% 100%;
    background-repeat:  no-repeat;
    background-attachment:  fixed;
  }

  .blockquote h1:before {
    left: 35px;
  }
      #contact>button:first-of-type {
      margin: 35px 0 50px 0;
      width: 250px;
      height: 45px;
    }
}

/*mobile écran taille m*/
@media only screen and (min-width: 321px) and (max-width: 389px) {

  :root {
    /* Breakpoints */
    /* Typography */
    font-family: Inter, sans-serif;
    font-size: 10px;
    --font-size-100: 0.625rem;
    --font-size-200: 0.75rem;
    --font-size-300: 1.5rem;
    --font-size-350: 0.925rem;
    --font-size-400: 1.2rem;
    --font-size-500: 1.6rem;
    --font-size-600: 1.8rem;
    --font-size-650: 1.75rem;
    --font-size-700: 2.125rem;
    --font-size-800: 3rem;
    --font-size-900: 3.75rem;
    --font-size-topBar: 2rem;
    --font-size-logoTop: 7.55rem;
    --font-size-titleSection: 4rem;
    --font-size-bulleGrandTxt: 1.925rem;
    --font-size-bullePetitTxt: 1.35rem;
    --font-size-logoContact: 3rem;
    --font-size-Boutons: 1.35rem;
    /* Scroll */
    scroll-behavior: smooth;
    scroll-padding-top: 1rem;
  }

  .background {
    height: 100vh;
    background-position: 25% 80%, 30% top;
    background-size: 100% 100%, auto 95vh;
  }
    .background_bas {
    height: 100vh;
    background-position: 25% 80%, 30% bottom;
    background-size: 100% 100%, auto 95vh;
  }
  #contact {
    height: auto;
    background-image:
      radial-gradient(farthest-corner, rgba(0, 0, 0, 0.1),
        rgba(24, 24, 24, 0.01));
    background-position: 25% 80%;
    background-size:  100% 100%;
    background-repeat:  no-repeat;
    background-attachment:  fixed;
  }
  .blockquote h1:before {
    left: 35px;
  }
      #contact>button:first-of-type {
      margin: 35px 0 50px 0;
      width: 250px;
      height: 45px;
    }

}

/*mobile écran taille l*/
@media only screen and (min-width: 390px) and (max-width: 450px) {

  :root {
    /* Breakpoints */
    /* Typography */
    font-family: Inter, sans-serif;
    font-size: 10px;
    --font-size-100: 0.625rem;
    --font-size-200: 0.75rem;
    --font-size-300: 1.5rem;
    --font-size-350: 0.925rem;
    --font-size-400: 1.4rem;
    --font-size-500: 1.6rem;
    --font-size-600: 1.9rem;
    --font-size-650: 1.75rem;
    --font-size-700: 2.125rem;
    --font-size-800: 3rem;
    --font-size-900: 3.75rem;
    --font-size-topBar: 2.5rem;
    --font-size-logoTop: 8.55rem;
    --font-size-titleSection: 4.2rem;
    --font-size-bulleGrandTxt: 2.425rem;
    --font-size-bullePetitTxt: 1.45rem;
    --font-size-logoContact: 3rem;
    --font-size-Boutons: 1.45rem;
    /* Scroll */
    scroll-behavior: smooth;
    scroll-padding-top: 1rem;
  }

  
  .background {
    height: 100vh;
    background-position: 25% 80%, 30% top;
    background-size: 100% 100%, auto 95vh;
  }
    .background_bas {
    height: 100vh;
    background-position: 25% 80%, 30% bottom;
    background-size: 100% 100%, auto 95vh;
  }


    #contact {
    height: auto;
    background-image:
      radial-gradient(farthest-corner, rgba(0, 0, 0, 0.1),
        rgba(24, 24, 24, 0.01));
    background-position: 25% 80%;
    background-size:  100% 100%;
    background-repeat:  no-repeat;
    background-attachment:  fixed;
  }
  .blockquote h1:before {
    left: 35px;
  }
      #contact>button:first-of-type {
      margin: 35px 0 50px 0;
      width: 250px;
      height: 45px;
    }
}

/* tablettes*/
@media only screen and (min-width: 451px) and (max-width: 791px) {

  :root {
    /* Breakpoints */
    /* Typography */
    font-family: Inter, sans-serif;
    font-size: 10px;
    --font-size-100: 0.625rem;
    --font-size-200: 0.75rem;
    --font-size-300: 1.5rem;
    --font-size-350: 0.925rem;
    --font-size-400: 1.6rem;
    --font-size-500: 1.7rem;
    --font-size-600: 2rem;
    --font-size-650: 1.75rem;
    --font-size-700: 2.125rem;
    --font-size-800: 3rem;
    --font-size-900: 3.75rem;
    --font-size-topBar: 2.88rem;
    --font-size-logoTop: 10.55rem;
    --font-size-titleSection: 4.6rem;
    --font-size-bulleGrandTxt: 2.888rem;
    --font-size-bullePetitTxt: 1.65rem;
    --font-size-logoContact: 3rem;
    --font-size-Boutons: 1.45rem;
    /* Scroll */
    scroll-behavior: smooth;
    scroll-padding-top: 1rem;
  }

  .background {
    height: 100vh;
    background-position: 25% 80%, right top;
    background-size: 100% 100%, auto 100vh;
  }
    .background_bas {
    height: 100vh;
    background-position: 25% 80%, right bottom;
    background-size: 100% 100%, auto 95vh;
  }
  
    #contact {
    height: auto;
    background-image:
      radial-gradient(farthest-corner, rgba(0, 0, 0, 0.1),
        rgba(24, 24, 24, 0.01));
    background-position: 25% 80%;
    background-size:  100% 100%;
    background-repeat:  no-repeat;
    background-attachment:  fixed;
  }
  
  .blockquote h1:before {
    left: 45px;
  }
      #contact>button:first-of-type {
      margin: 35px 0 50px 0;
      width: 250px;
      height: 45px;
    }
}

/* tablettes l*/
@media only screen and (min-width: 791px) and (max-width: 950px) {

  :root {
    /* Breakpoints */
    /* Typography */
    font-family: Inter, sans-serif;
    font-size: 13px;
    --font-size-100: 0.625rem;
    --font-size-200: 0.75rem;
    --font-size-300: 1.5rem;
    --font-size-350: 0.925rem;
    --font-size-400: 1.6rem;
    --font-size-500: 1.5rem;
    --font-size-600: 2.2rem;
    --font-size-650: 2.4rem;
    --font-size-700: 2.125rem;
    --font-size-800: 3rem;
    --font-size-900: 3.75rem;
    --font-size-topBar: 2.999rem;
    --font-size-logoTop: 10.55rem;
    --font-size-titleSection: 4.88rem;
    --font-size-bulleGrandTxt: 3rem;
    --font-size-bullePetitTxt: 1.85rem;
    --font-size-logoContact: 3rem;
    --font-size-Boutons: 1.65rem;
    /* Scroll */
    scroll-behavior: smooth;
    scroll-padding-top: 1rem;
  }

  .background {
    height: 100vh;
    background-position: 25% 80%, right top;
    background-size: 100% 100%, auto 100vh;
  }
    .background_bas {
    height: 100vh;
    background-position: 25% 80%, right bottom;
    background-size: 100% 100%, auto 95vh;
  }

  .foreground h1 {
    margin-top: 85px;
  }

  #music button:first-of-type {
    margin: 35px 0 30px 0;
    width: 250px;
    height: 45px;
    background-color: gray;
    font-size: var(--font-size-Boutons);
    color: white;
    border-radius: 50px;
    border-width: 2px;
    border-color: white;
  }

  #music>div:nth-of-type(2)>div:first-child>div:first-of-type {
    width: 25%;
    max-width: 300px;
  }

  #music>div:nth-of-type(2)>div:first-child>div:nth-of-type(2) {
    width: 38%;
    max-width: 350px;
  }

  .blockquote h1:before {
    left: 65px;
  }

  #about>button:first-of-type {
    margin: 35px 0 30px 0;
    width: 250px;
    height: 45px;

    background-color: gray;
    font-size: var(--font-size-Boutons);
    color: white;
    border-radius: 25px;
    border-width: 2px;
    border-color: white;
  }

  #contact>button:first-of-type {
    margin: 35px 0 30px 0;
    width: 250px;
    height: 45px;
  }

  .form_grid {
    grid-template-columns: 32% 53%;
  }

  .boutonEnvoyer {
    border-color: white;
    color: white;
    border-width: 2px;
    min-width: 150px;
    max-width: 250px;
    height: 57px;
    font-size: var(--font-size-Boutons);
    margin-top: 2vh;
    margin-bottom: 5vh;
  }

  .navbar a {
    margin: 2px 0;
  }
      #contact>button:first-of-type {
      margin: 35px 0 50px 0;
      width: 250px;
      height: 45px;
    }
}

/* desktop*/
@media only screen and (min-width: 951px) {

  :root {
    /* Breakpoints */
    /* Typography */
    font-family: Inter, sans-serif;
    font-size: 13px;
    --font-size-100: 0.625rem;
    --font-size-200: 0.75rem;
    --font-size-300: 1.5rem;
    --font-size-350: 0.925rem;
    --font-size-400: 1.6rem;
    --font-size-500: 1.3rem;
    --font-size-600: 2.2rem;
    --font-size-650: 2.4rem;
    --font-size-700: 2.125rem;
    --font-size-800: 3rem;
    --font-size-900: 3.75rem;
    --font-size-topBar: 2.999rem;
    --font-size-logoTop: 10.55rem;
    --font-size-titleSection: 4.88rem;
    --font-size-bulleGrandTxt: 2.25rem;
    --font-size-bullePetitTxt: 1.25rem;
    --font-size-logoContact: 3rem;
    --font-size-Boutons: 1.65rem;
    /* Scroll */
    scroll-behavior: smooth;
    scroll-padding-top: 1rem;
  }


  .background {
    height: 100vh;
    background-position: 25% 80%, right top;
    background-size: 100% 100%, auto 100vh;
  }
    .background_bas {
    height: 100vh;
    background-position: 25% 80%, right bottom;
    background-size: 100% 100%, auto 95vh;
  }

  .foreground h1 {
    margin-top: 85px;
  }

  #music button:first-of-type {
    margin: 35px 0 30px 0;
    width: 250px;
    height: 45px;
    background-color: gray;
    font-size: var(--font-size-Boutons);
    color: white;
    border-radius: 50px;
    border-width: 2px;
    border-color: white;
  }

  #music>div:nth-of-type(2)>div:first-child>div:first-of-type {
    width: 25%;
    max-width: 300px;
  }

  #music>div:nth-of-type(2)>div:first-child>div:nth-of-type(2) {
    width: 38%;
    max-width: 350px;
  }

  .blockquote h1:before {
    left: 45px;
  }



  .blockquote-wrapper {
    display: flex;
    max-height: auto;
    padding: 0px 2vh;
    max-width: 750px;
    min-width: 250px;
  }

  .blockquote {
    margin: 0 auto;
    align-self: center;
  }

  .tiles-textcontent {
    width: 100%;
    height: 450px;
    padding: 0 0vw 0 0vw;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }


  .carousel-control-next-icon {
    margin-left: 8vw;
  }

  .carousel-control-prev-icon {
    margin-right: 8vw;
  }

  #about .img-fluid {
    height: 550px;
    max-width: 100%;
    width: auto;
    object-fit: cover;
  }

  #about>div:first-of-type {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
  }

  #about>div:first-of-type {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    width: 950px;

  }

  #about>div:first-of-type>div:first-of-type {
    margin: 0 0 0 20px;
    min-width: 330px;
    align-self: flex-start;
  }

  #about>div:first-of-type>div:nth-of-type(2) {
    margin: 0 0px;
    width: auto;
    align-self: flex-start;
  }

  #about>button:first-of-type {
    margin: 35px 0 30px 0;
    width: 250px;
    height: 45px;

    background-color: gray;
    font-size: var(--font-size-Boutons);
    color: white;
    border-radius: 25px;
    border-width: 2px;
    border-color: white;
  }

  #contact>button:first-of-type {
    margin: 35px 0 30px 0;
    width: 250px;
    height: 45px;
  }

  .form_grid {
    grid-template-columns: 32% 53%;
  }

  .boutonEnvoyer {
    border-color: white;
    color: white;
    border-width: 2px;
    min-width: 150px;
    max-width: 250px;
    height: 57px;
    font-size: var(--font-size-Boutons);
    margin-top: 2vh;
    margin-bottom: 5vh;
  }
}
