<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Import Fonts */
@font-face {
	font-family: 'Unistra A';
    font-weight: 400;
	src: url(â€˜assets/fonts/UnistraA-Regular.tffâ€™) format(â€˜truetypeâ€™)
}

@font-face {
	font-family: 'Unistra A';
    font-weight: 700;
	src: url(â€˜assets/fonts/UnistraA-Bold.tffâ€™) format(â€˜truetypeâ€™)
}

body {
    font-family: 'Unistra A', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
  }


.content {
    flex: 1;
}

header {
    background-image: url("../images/white-simple-textured-design-background.jpg");
    background-size: cover;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
  }

.button {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #1E1E1E;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    height: 36px;
    transition: background-color 0.3s ease;
  }
  
  .button:hover {
    background-color: #343434;
  }

  .button a {
    font-size: 16px;
    color: white;
    text-decoration: none;
  }

h1, h2{
    font-family: 'Unistra A', sans-serif;
    font-weight: 400;
}

h1{
    font-family: 32px;
}

h2{
    font-size: 24px;
}

h3{
    font-size: 32px;
    font-weight: 700;
}

p{
    font-size: 16px;
}

.chapo{
    font-size: 22px;
}

.entete{
    padding: 2rem;
}
  
.promo {
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    padding-right: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
    height: 90px;
  }
  .promo h2 {
    margin: 0;
  }

  .promo-image{
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  .promo-content {
    display: none;
    padding: 1rem;
    border-top: 1px solid #ccc;
  }

  .promo-content p{
    font-size: 18px;
  }
  .active + .promo-content {
    display: block;
  }
  .arrow {
    font-size: 1.5rem;
    transition: transform 0.3s;
  }
  .active .arrow {
    transform: rotate(180deg);
  }

  a {
    color: #7C7C7C;
    text-decoration: underline;
  }

  .group-tags{
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
  }

  .first-tag{
    display: inline-block;
    background-color: #1E1E1E;
    color: white;
    padding: 4px 8px;
    border: none;
    height: 20px;
  }

  footer {
    background-color: #763237;
    color: white;
    padding: 1.5rem;
    padding: 32px 138px;
  }

  .credits{
    text-align: center;
  }

  .footer-container{
    display: flex;
    justify-content: space-between;
  }

  footer button{
    display: block;
    background-color: #763237;
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    height: 44px;
    color: white;
    font-family: 'Unistra A', sans-serif;
    font-size: 18px;
    font-weight: 700;
    border: 1px solid;
  }


  .footer-link a{
    color: white;
    font-size: 22px;
    text-decoration: underline;
  }

  @media (max-width: 600px) {
    header{
        flex-direction: column;
      align-items: flex-start;
      gap: 2rem;
    }

    footer{
        flex-direction: column;
      align-items: flex-start;
      gap: 2rem;
      padding: 32px 16px;
    }

    .footer-container{
        flex-direction: column;
      align-items: flex-start;
      gap: 2rem;
    }

    .promo-image img{
        display: none;
    }

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