<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */



@import url(//fonts.googleapis.com/css?family=Lato);

/* *, *:before, *:after{
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: 'Lato', sans-serif;
} */
  
  

/*| Navigation |*/


nav{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index:10;
  font-family: 'Lato', sans-serif;
  background: rgba(67,41,24,1);


	
}
  nav ul{
    list-style: none;
    float: right;
	padding: 0;
    position: absolute; /* postulat de départ */
    top: 0%; left: 50%; /* à 50%/50% du parent référent */
    transform: translate(-50%, -0%); /* décalage de 50% de sa propre taille */
    background: rgba(245,178,189,0.8);
    border-radius: 10px;
  }
    nav ul li{
      position: relative;
      float: left;
      -webkit-transition: all .2s ease-in-out;
      -moz-transition: all .2s ease-in-out;
      transition: all .2s ease-in-out;
    }

    nav ul li:hover{background: rgba(0,0,0,.30);}
    nav ul li:hover &gt; ul{display: block;}

      nav ul li a{
        display: block; 
        padding: 1.5em 2em;
        color: #394944; 
        font-size: .9em;
        letter-spacing: 1px;
        text-decoration: none;
        text-transform: uppercase;
      }
      nav ul ul{
        display: none;
        background: #394944;
        position: absolute; 
        top: 100%;
        box-shadow: -3px 3px 10px -2px rgba(0,0,0,.1);
        border: 1px solid rgba(0,0,0,.1);
      }
        nav ul ul li{float: none; position: relative;}
          nav ul ul li a {
            padding: 15px 30px; 
			color: #fff;
            border-bottom: 1px solid rgba(0,0,0,.05);
          }
          nav ul ul ul {
            position: absolute; 
            left: 100%; 
            top:0;
          }	

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