<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* MENU */

* {
    margin: 0;
  }
  
  ul {
    list-style: none;
    padding: 0;
  }
  
  a {
    text-decoration: none;
    color: #3C6E90;
  }
  
  .test--invisible {
    display: none;
  }
  
  body.home {
    background-color: #D9F1FC;
    background-image: url("../assets/images/nuages.svg");
    background-size: 300px 300px;
    -webkit-animation: slide 7s linear infinite;
            animation: slide 7s linear infinite;
    font-family: "Abyss", display;
  
  }
  
  @-webkit-keyframes slide {
    from {
      background-position-x: 0px;
    }
    to {
      background-position-x: 300px;
    }
  }
  
  @keyframes slide {
    from {
      background-position-x: 0px;
    }
    to {
      background-position-x: 300px;
    }
  }
  .title--home img, .home__menu, .credits__container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60vw;
  }
  
  .title--home img {
    width: 50vw;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            animation: titlemove 2s ease-in-out both;
  }
  
  @-webkit-keyframes titlemove {
    to {
      -ms-transform: translate(-50%, -150%);
      -webkit-transform: translate(-50%, -150%);
              transform: translate(-50%, -150%);
      width: 50vw;
    }
  }
  
  @keyframes titlemove {
    to {
      -ms-transform: translate(-50%, -150%);
      -webkit-transform: translate(-50%, -150%);
              transform: translate(-50%, -150%);
      width: 50vw;
    }
  }
  .home--visible {
    -webkit-animation: menuShow 1s ease-in-out both;
            animation: menuShow 1s ease-in-out both;
  }
  
  @-webkit-keyframes menuShow {
    to {
      opacity: 1;
    }
  }
  
  @keyframes menuShow {
    to {
      opacity: 1;
    }
  }
  .home__menu {
    opacity: 0;
    text-align: center;
    font-size: 1em;
    width: auto;
    -webkit-transform: translate(-50%, 20%);
            transform: translate(-50%, 20%);
  }
  
  li:first-child {
    margin-bottom: 2em;
  }
  
  li:nth-last-child(2) {
    margin-bottom: 1em;
  }
  
  .menu__el {
    margin-bottom: 0.5em;
    color: #3C6E90;
  }
  
  .menu__el--first {
    background-color: #fff;
    color: #3C6E90;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
    border-radius: 50px;
    font-size: 2.5em;
    padding: 20px 40px 20px 40px;
  }
  .menu__el--first :visited {
    color: #D9F1FC;
  }
  
  .credits__block {
    width: 70vw;
    height: 60vh;
    background: #F2F7F9;
    border: 20px dashed #7DC99D;
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-size: 1.5rem;
    padding: 1em;
  }
  
  
  .tutorial__title, .credits__title {
    text-align: center;
    margin-bottom: 0.5em;
  }
  
  .switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }
  
  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* The slider */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #E0EEF3;
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 34px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: #7DC99D;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  
  input:checked + .slider {
    background-color: #bbebcf;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  .slider.round:before {
    border-radius: 50%;
  }
  
  .close__btn {
    position: absolute;
    right: -40px;
    top: -30px;
    background-color: #7DC99D;
    width: 50px;
    height: 50px;
    padding: 5px;
    border-radius: 50%;
  }
  
  .x__btn {
    font-size: 1.5em;
    color: #F2F7F9;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  
  .credits__elements {
    text-align: center;
  }
  .credits__elements p {
    margin-bottom: 0.5em;
  }
  .credits__elements p a {
    color: #3C6E90;
  }
  
  @media (min-width: 1000px) {
    .home__menu {
      font-size: 2.5em;
      -webkit-transform: translate(-50%, 10%);
              transform: translate(-50%, 10%);
    }

    .credits__block {
      width: 70vw;
      height: 60vh;
      background: #F2F7F9;
      border: 20px dashed #7DC99D;
      -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
              box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
      font-size: 3rem;
      padding: 1em;
    }
  
    .tutorial__title, .credits__title {
      margin-bottom: 1em;
    }
  
    .close__btn {
      width: 80px;
      height: 80px;
    }
  
    .x__btn {
      font-size: 1em;
    }
  }
  
  
  #player-container #play-pause {
    cursor: pointer;
    text-indent: -999999px;
    height:40px;
    width: 40px;
    padding: 12px 18px;
    z-index: 2;
   
      background-repeat: no-repeat!important;
      background-position: center;
      background-size: 16px;
    background-repeat:no-repeat;
    background-position:center;
    background-size:20px;
  
  }
  .play {
    background-image: url(../assets/icons/volume-xmark-solid.svg);
  }
  .pause {
     background-image: url(../assets/icons/volume-high-solid.svg)!important;
  }
  
  .credits__container{
    display: none;

    width: 80vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .lose__container{
    display: block;
  }
  
  body[data-section = "credits"] .credits__container{
    display: block;
  }
  
  body[data-section = "close"] .credits__container{
    display: none;
  }

  .bear-lose{
    width: 20%;
    position: relative;
    left: 40%;
    margin-bottom: 10px;
  }
  
  .p-lose{
    font-size: 2rem;
    margin-bottom: 2%;
    font-family: "PP Pangram Medium";
  }
  
  .button-lose a{
    color: unset;
    align-items: center;
    
  }

  .buttons{
    display: flex;
    justify-content: center;
  }
  
  .button-lose{
    background-color: #FFECDA;
    filter: drop-shadow(0, 4, 4, rgba(0, 0, 0, .6));
    padding: 3%;
    padding-left: 4rem;
    padding-right: 4rem;
    height: 2rem;
    border: none;
    border-radius: 40px;
    font-size: .8em;
    text-align: center;
    font-family: "Abyss", display;
    margin: 2%;
    margin-top: 5%;
    white-space: nowrap;
  
  }
  
  .fa-arrow-rotate-left, .fa-house-chimney{
    font-size: 80%;
    margin-left: 5%;
    color: #FFB468;
  }
  
  .fa-house-chimney{
    position: relative;
    top: -7%;
    margin-left: 10%;
  }
  
  .lose__block{
    border: 20px dashed #FFCC99;
  }
  .version{
    position: absolute;
    bottom: 2em;
    left: 50%;
    transform: translate(-50%, 0);
    color: #3C6E90;
  }
</pre></body></html>