<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&amp;display=swap');
/* global*/

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  list-style: none;
  outline: none;
  border:none;
  scroll-behavior: smooth;
  overflow: auto;
  overflow-x: hidden;
}

:root {
  --accent: #E27406;
  --accent2: #891E0C;
  --bg: #FED287;
  --text: #333;
  --light: #fff;
}

/* container*/

.container{
    position:relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:40px;
    
}

 p{
  width: 1200px;
  margin:0 auto;
  font-size: calc(0.6rem + 0.7vw);
  font-family: 'Poppins', sans-serif;
  font-weight: 500; 
  line-height: 30px;
  overflow: hidden;
  padding: 0 10px;
 } 

 @media(max-width:1180px){
   p{
    line-height: 22px;
    font-weight: 400;
   }
 }

 @media(max-width:930px){
  p{
    font-size: 16px;
   line-height: 14px;
   font-weight: 400;
  }
}

.container .logo{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position:absolute;
    top:0px;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
} 

.logo img{
    width: 80px;
    height: 80px;
    object-fit: cover;
    object-position: center;
}

.container h1{
    font-size: calc(0.7rem + 1.3vw);
    font-family: 'Poppins', sans-serif;
    color:var(--light);
    text-align: center;
    z-index: 100;
    position: absolute;
    top:25px
}

.chasse{
    color:blue;
    font-size: calc(0.7rem + 1vw);
}

video{
    position: relative;
    left: 0;
    bottom: 0;
    object-fit: cover;
    object-position: center;
    z-index: -1;
    width: 100vw;
    height: 100vh;
}

.lien{
    text-decoration: none;
    border: 1px solid var(--bg);
    padding: 10px 50px;
    font-size: 25px;
    font-weight: 500;
    border-radius: 25px;
    transition: 0.4s ease-in-out;
    position: fixed;
    bottom:25px;
}

.lien:hover{
    border: 1px solid var(--light);
}

.lien a{
    font-size: 30px;
    font-weight: 600;
    color:var(--light);
    transition: 0.4s ease-in-out;
}

.lien a:hover{
    color: var(--bg);
}

@media(max-height:430px){
  .lien{
    bottom: 6px;
    padding: 0px 25px;
    height: auto;
    /* font-weight: 300; */
  }
  .lien a{
    font-weight: 300;
    font-size: 14px;
  }
}

/* menu contextuel*/

.custom-menu {
    display: none; 
    width: 200px;
    box-shadow: 0 5px 15px #1111118c;
    position: fixed;
    z-index: 5000;
  }

  .custom-menu button {
    width: 100%;
    text-align: left;
    background-color: #111;
    color: #e7e7e7;
    font-size: 14px;
    padding: 8px 12px;
    border: none;
    cursor: pointer;
  }

  .custom-menu button:hover {
    background-color: #1d73cf;
  }

  .texte-introduction{
    position:absolute;
    top:0px;
    bottom: 0px;
    left:0;
    width: 100%;
    height: 100vh;
    padding:20px 10px;
    left:-100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(173, 172, 172, 0.4);
    font-size: calc(0.5rem + 0.8vw);
    font-family: 'Poppins', 'sans-serif';
    font-weight: 400;
    transition:0.8s ease-in-out;
       z-index: -1;
  }
  
  .texte-introduction.active{
    left: 0px;
  }


    
  </pre></body></html>