/* Frame générale */
@font-face {
  font-family: "BBB-Herthey-Futural";
  src: url("BBB-Herthey-Futural-40.woff") format("woff");
}


.frame {
  background-color: #ffffff;
  border: 1px solid #ffff;
  width: 100%;
  min-width: 1276px;
  min-height: 2051px;
  position: relative;
  padding: 30px 20px;
  box-sizing: border-box;
}

.copyright {
  font-family: "BBB-Herthey-Futural", Helvetica;
  color: #a1b7ff;
  position: fixed;
  bottom: 20px;
  right: 24px;
  font-size: 12px;
  line-height: 10px;
  opacity: 0.7;
  z-index: 999;
}

/* Header Work / About aligné à droite */
.frame .header {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
  font-family: "BBB-Herthey-Futural", Helvetica;
  font-weight: 400;
  font-size: 20px;
  color: #a1b7ff;
  margin-right: 20px;
}

.nav-item a {
  text-decoration: none;
  color: inherit;
}

.frame .header .about {
  color: #a1b7ff;
}

/* Monogramme cliquable */
.monogramme-container {
  position: absolute;
  top: 20px;
  left: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.monogramme {
  width: 70px;
  height: auto;
  display: block;
  cursor: pointer;
}

.monogramme img {
  width: 100%;
  height: auto;
  display: block;
}

.a-propos {
  font-family: "BBB-Herthey-Futural", Helvetica;
  margin-top: 120px;
  margin-left: 20px;
  margin-right: auto;
  font-size: 30px;
  line-height: 1.3;
  max-width: 900px;
  color: #a1b7ff;
}

.a-propos a {
  font-family: "BBB-Herthey-Futural", Helvetica;
  text-decoration: underline;
  color: inherit;
}

@media screen and (max-width: 768px) {
  .frame {
    min-width: unset;
    min-height: 100vh;
    padding: 20px 14px;
  }

 .frame .header {
    font-size: 14px;
    gap: 20px;
    margin-right: 10px;
    margin-top: 14px;
  }

  .monogramme {
    width: 40px;
  }

  .a-propos {
    margin-top: 60px;
    margin-left: 0;
    font-size: 18px;
    line-height: 1.5;
    max-width: 100%;
    padding: 0 10px;
  }
    }