*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Ubuntu", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-size: 30px;
}

* {
  overflow-x: hidden;
}

body {
  background-color: rgb(62, 57, 46);
  width: 100vw;
  max-width: 100%;
}

.logo {
  width: 150px;
}

h1,
h2,
h3 {
  font-family: "Quantico", sans-serif;
}

h2 {
  font-size: 84px;
}

option {
  color: black;
}

@keyframes translation-cote {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes apparution {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes apparution-opacite {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.cache {
  opacity: 0;
  transition: all 1s 0.2s;
  transform: translateY(-50%);
}

.visible {
  opacity: 1;
  transform: translateY(0);
}

header {
  background: linear-gradient(0deg, rgba(75, 119, 209, 0) 0%, rgba(0, 0, 0, 0.89) 80%);
  border-bottom: 3px white solid;
  padding: 34px 24px;
}
header div {
  display: flex;
  align-items: flex-start;
}
header div .logo {
  width: -moz-fit-content;
  width: fit-content;
}
header div .logo img {
  width: 50%;
}
header div .menu-hamburger {
  width: 30%;
}
header div .menu-hamburger img {
  width: 100%;
}
header div .menu-visible {
  display: flex;
}
header div nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 90px;
  z-index: 10;
  right: 20px;
  background-color: black;
}
header div nav a {
  color: white;
  padding: 10px;
  font-size: 16px;
}
header div nav a:hover {
  color: #EFB757;
  transition: all 0.1s;
}

@media screen and (min-width: 480px) {
  header {
    padding: 34px 24px;
  }
  header div {
    align-items: center;
  }
  header div .logo {
    width: 50%;
  }
  header div .logo img {
    width: 100%;
  }
  header div .menu-hamburger {
    display: none;
  }
  header div nav {
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-direction: row;
    position: relative;
    background-color: transparent;
    right: 0;
    top: 0;
  }
  header div nav a {
    width: -moz-fit-content;
    width: fit-content;
    font-size: 16px;
  }
}
@media screen and (min-width: 1040px) {
  header {
    padding: 15px 0 15px 67px;
  }
  header div {
    align-items: flex-start;
  }
  header div .logo {
    width: 15%;
  }
  header div .logo img {
    width: 100%;
  }
  header div nav {
    justify-content: flex-start;
    top: 0;
  }
  header div nav a {
    font-size: 24px;
  }
}
@media screen and (min-width: 1920px) {
  header div nav {
    position: relative;
    padding: 10px;
    top: 30px;
  }
  header div nav a {
    color: white;
    padding: 10px;
    font-size: 30px;
  }
}
.header-administration {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.header-administration .logo {
  display: block;
  max-width: 230px;
  max-height: 95px;
  width: auto;
  height: auto;
}
.header-administration .droite {
  display: flex;
  width: 50%;
}
.header-administration .droite .profil {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  align-items: center;
}
.header-administration .droite .profil .img {
  width: 50%;
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.header-administration .droite .profil .img img {
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

footer {
  display: flex;
  justify-content: space-between;
  background-color: white;
  padding: 50px 2% 39px 5%;
  box-shadow: 0 0 0 3px rgb(0, 0, 0), 0 0 0 13px rgb(255, 255, 255), 0 0 0 16px rgb(0, 0, 0), 0 0 0 29px rgb(255, 255, 255);
  height: 100%;
}
footer .logo {
  width: 30%;
}
footer .logo img {
  width: 100%;
}
footer .pages {
  display: flex;
  gap: 15%;
  width: 100%;
}
footer nav {
  display: flex;
  flex-direction: column;
  overflow: visible;
}
footer nav a {
  color: #384873;
  font-size: 14px;
  width: -moz-fit-content;
  width: fit-content;
  overflow-x: visible;
}
footer nav a:hover {
  color: #EFB757;
  transition: all 0.1s;
}
footer p {
  color: #384873;
}
footer .reseaux {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
  width: 40%;
  gap: 5%;
}
footer .reseaux p {
  font-size: 14px;
  color: #384873;
}
footer .reseaux .icons {
  width: 100%;
  justify-content: center;
  display: flex;
  gap: 5%;
}
footer .reseaux svg.bi.bi-instagram:hover {
  fill: #EFB757;
  transition: all 0.1s;
}
footer .reseaux svg.bi.bi-facebook:hover {
  fill: #EFB757;
  transition: all 0.1s;
}
footer .reseaux svg.bi.bi-twitter-x:hover {
  fill: #EFB757;
  transition: all 0.1s;
}

@media screen and (min-width: 480px) {
  footer .logo {
    width: 30%;
  }
  footer .logo img {
    width: 100%;
  }
  footer .pages {
    display: flex;
    gap: 20%;
    width: 100%;
  }
  footer nav {
    display: flex;
    flex-direction: column;
    overflow: visible;
  }
  footer nav a {
    color: #384873;
    font-size: 14px;
    width: -moz-fit-content;
    width: fit-content;
    overflow-x: visible;
  }
  footer nav a:hover {
    color: #EFB757;
    transition: all 0.1s;
  }
  footer p {
    color: #384873;
  }
  footer .reseaux {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible;
    width: 40%;
    gap: 5%;
  }
  footer .reseaux p {
    font-size: 14px;
    color: #384873;
  }
  footer .reseaux .icons {
    width: 100%;
    justify-content: center;
    display: flex;
    gap: 5%;
  }
}
@media screen and (min-width: 1024px) {
  footer {
    display: flex;
    justify-content: space-between;
    background-color: white;
    padding: 50px 0 56px;
    box-shadow: 0 0 0 3px rgb(0, 0, 0), 0 0 0 13px rgb(255, 255, 255), 0 0 0 16px rgb(0, 0, 0), 0 0 0 29px rgb(255, 255, 255);
    height: 100%;
    overflow: visible;
  }
  footer div {
    display: flex;
    padding: 0 10%;
    overflow: visible;
  }
  footer div .logo {
    width: 20%;
  }
  footer nav {
    display: flex;
    flex-direction: column;
    padding: 0;
    justify-content: space-between;
    position: relative;
    top: 0;
  }
  footer nav a {
    color: #384873;
    font-size: 20px;
  }
  footer nav a:hover {
    color: #EFB757;
    transition: all 0.1s;
  }
  footer p {
    color: #384873;
  }
  footer .reseaux p {
    font-size: 20px;
  }
  footer .reseaux svg {
    width: 25px;
    height: 25px;
  }
}
input[type=text],
textarea,
input[type=email],
input[type=password],
select {
  color: black;
}

input.supprimer {
  color: #ffffff;
  background-color: #ab4141;
  margin: 3% 0;
  padding: 3% 0;
}

img {
  width: 300px;
}

.btn {
  background-color: #384873;
  padding: 13px;
  border: white solid 5px;
  border-radius: 1px;
  box-shadow: 0 0 0 7px #384873;
  width: -moz-fit-content;
  width: fit-content;
  margin: 3%;
}

.btn:hover {
  background-color: #EFB757;
  box-shadow: 0 0 0 7px #EFB757;
  transition: all 0.1s;
}

.erreur {
  width: -moz-fit-content;
  width: fit-content;
  background-color: #ab4141;
  margin: 3% 0;
  padding: 2%;
  text-align: center;
}

.succes {
  width: -moz-fit-content;
  width: fit-content;
  background-color: #92b337;
  margin: 3% 0;
  padding: 2%;
  text-align: center;
}

.debut {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(0, 0, 0));
  height: 843px;
  overflow: hidden;
  width: 100vw;
  transition: background-image 1s ease-in-out;
  position: relative;
}
.debut .background-fade {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
  z-index: -1;
  transition: opacity 1s ease-in-out;
}
.debut .header-accueil {
  background: linear-gradient(0deg, rgba(75, 119, 209, 0) 0%, rgba(0, 0, 0, 0.89) 80%);
  border-bottom: 3px white solid;
  border-radius: 1px;
  display: flex;
  align-items: flex-start;
  padding: 34px 24px;
  position: relative;
  overflow: visible;
}
.debut .header-accueil .logo {
  width: -moz-fit-content;
  width: fit-content;
}
.debut .header-accueil .logo img {
  width: 50%;
}
.debut .header-accueil .menu-hamburger {
  width: 30%;
}
.debut .header-accueil .menu-hamburger img {
  width: 100%;
}
.debut .header-accueil nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 90px;
  z-index: 10;
  right: 20px;
  background-color: black;
}
.debut .header-accueil nav a {
  color: white;
  padding: 10px;
  font-size: 16px;
  width: -moz-fit-content;
  width: fit-content;
}
.debut .header-accueil nav a:hover {
  color: #EFB757;
  transition: all 0.1s;
}
.debut .header-accueil .menu-visible {
  display: flex;
}
.debut .accroche {
  text-align: center;
  margin-top: 13px;
  border-top: 3px white solid;
  border-radius: 1px;
  height: 100%;
}
.debut .accroche h1 {
  margin: 152px 0 85px;
  font-size: 20px;
}
.debut .accroche a {
  font-size: 18px;
  background-color: #384873;
  padding: 12px 26px;
  border: white solid 3px;
  border-radius: 1px;
  box-shadow: 0 0 0 7px #384873;
}
.debut .accroche a:hover {
  background-color: #EFB757;
  box-shadow: 0 0 0 7px #EFB757;
  transition: all 0.1s;
}

.accueil {
  background-color: black;
  margin-top: -1px;
}
.accueil .valeurs {
  height: 561px;
  overflow-y: hidden;
}
.accueil .valeurs h2 {
  text-align: center;
  margin: 0 5%;
  font-size: 20px;
}
.accueil .valeurs .slider {
  display: flex;
  justify-content: space-around;
  margin: 52px 0 310px;
  overflow: visible;
  width: -moz-max-content;
  width: max-content;
  animation: translation-cote 10s linear infinite;
}
.accueil .valeurs .slider .valeur {
  margin-right: 50px;
  background-color: #FFFAF1;
  color: black;
  padding: 8vh;
  contain: strict;
  display: flex;
  justify-content: center;
  align-items: center;
  border: black 5px solid;
  border-radius: 1px;
  box-shadow: 0 0 0 5px #FFFAF1;
  font-size: 16px;
  overflow: hidden;
}
.accueil .ingredients {
  background: linear-gradient(0deg, rgb(239, 183, 87) 0%, rgb(74, 68, 55) 55%, rgb(0, 0, 0) 100%);
  height: 346px;
  overflow-y: hidden;
  min-height: 100%;
}
.accueil .ingredients h2 {
  text-align: center;
  margin: 0 5%;
  font-size: 20px;
}
.accueil .ingredients .images {
  position: relative;
  overflow: hidden;
  height: 1200px;
}
.accueil .ingredients .images .carotte {
  overflow: hidden;
  position: absolute;
  width: 50%;
  left: -10%;
  top: 5%;
  z-index: 10;
}
.accueil .ingredients .images .concombre {
  position: absolute;
  width: 22%;
  left: 10%;
  top: 3%;
}
.accueil .ingredients .images .piment {
  position: absolute;
  left: 25%;
  top: 6%;
  width: 35%;
}
.accueil .ingredients .images .tomate {
  position: absolute;
  left: 40%;
  top: 10%;
  width: 24%;
}
.accueil .ingredients .images .avocat {
  position: absolute;
  left: 55%;
  top: 2%;
  width: 20%;
}
.accueil .ingredients .images .patate {
  position: absolute;
  left: 63%;
  top: 7%;
  width: 23%;
}
.accueil .ingredients .images .salade {
  position: absolute;
  left: 74%;
  top: 8%;
  width: 38%;
}
.accueil .commentaires {
  background-color: #EFB757;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 10% 0;
}
.accueil .commentaires h2 {
  text-align: center;
  margin: 0 5%;
  font-size: 20px;
}
.accueil .commentaires div {
  background-color: white;
  width: -moz-fit-content;
  width: fit-content;
  margin: 5% 10% 10%;
  padding: 26px 19px;
  border: solid black 3px;
  border-radius: 1px;
  box-shadow: 0 0 0 5px;
}
.accueil .commentaires div .etoiles {
  color: #FFA100;
}
.accueil .commentaires div p {
  color: black;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
}
.accueil .infolettre {
  background-color: #384873;
  padding: 6px 30px 30px;
  text-align: center;
}
.accueil .infolettre .infolettre-texte {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.accueil .infolettre .infolettre-texte h2 {
  font-size: 20px;
}
.accueil .infolettre .infolettre-texte h3 {
  font-size: 14px;
}
.accueil .infolettre .infolettre-texte .erreur {
  font-size: 14px;
}
.accueil .infolettre .clients {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.accueil .infolettre .clients form {
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
}
.accueil .infolettre .clients form input[type=text],
.accueil .infolettre .clients form input[type=submit] {
  font-size: 14px;
}
.accueil .infolettre .clients form input {
  color: #384873;
  margin: 5px;
}

@media screen and (min-width: 480px) {
  .debut .header-accueil {
    align-items: center;
  }
  .debut .header-accueil .logo {
    width: 50%;
  }
  .debut .header-accueil .logo img {
    width: 100%;
  }
  .debut .header-accueil .menu-hamburger {
    display: none;
  }
  .debut .header-accueil nav {
    display: flex;
    width: 100%;
    justify-content: space-between;
    position: relative;
    padding: 50px;
    top: 5px;
    flex-direction: row;
    background-color: transparent;
  }
  .debut .header-accueil nav a {
    color: white;
    padding: 10px;
    font-size: 16px;
  }
  .debut .header-accueil nav a:hover {
    color: #EFB757;
    transition: all 0.1s;
  }
  .debut .accroche h1 {
    font-size: 32px;
  }
  .accueil .valeurs {
    height: 80vh;
  }
  .accueil .valeurs h2 {
    font-size: 32px;
  }
  .accueil .valeurs .slider .valeur {
    border: black 3px solid;
  }
  .accueil .ingredients {
    height: 60vh;
    overflow: visible;
  }
  .accueil .ingredients h2 {
    font-size: 20px;
  }
  .accueil .ingredients .images {
    position: relative;
    height: 100%;
    overflow: visible;
  }
  .accueil .ingredients .images .carotte {
    overflow: visible;
  }
  .accueil .commentaires h2 {
    font-size: 32px;
  }
  .accueil .infolettre .infolettre-texte h2 {
    font-size: 32px;
  }
  .accueil .infolettre .infolettre-texte h3 {
    font-size: 20px;
  }
}
@media screen and (min-width: 1040px) {
  .debut .header-accueil {
    align-items: flex-start;
    padding: 15px 0 15px 67px;
  }
  .debut .header-accueil .logo {
    width: 15%;
  }
  .debut .header-accueil nav {
    top: 0;
    justify-content: flex-start;
  }
  .debut .header-accueil nav a {
    padding: 10px;
    font-size: 24px;
  }
  .debut .accroche {
    height: 80vh;
  }
  .debut .accroche h1 {
    margin: 152px 0 85px;
    font-size: 48px;
  }
  .debut .accroche a {
    margin: 152px 0 85px;
    font-size: 32px;
  }
  .accueil .valeurs {
    height: 80vh;
  }
  .accueil .valeurs h2 {
    font-size: 48px;
  }
  .accueil .valeurs .slider .valeur {
    margin-right: 100px;
    padding: 12vh;
    border: black 5px solid;
  }
  .accueil .ingredients {
    height: 100vh;
  }
  .accueil .ingredients h2 {
    font-size: 48px;
  }
  .accueil .ingredients .images {
    position: relative;
    height: 100%;
  }
  .accueil .ingredients .images .concombre {
    width: 20%;
    left: 15%;
  }
  .accueil .ingredients .images .piment {
    left: 30%;
    top: 20%;
    width: 25%;
  }
  .accueil .ingredients .images .tomate {
    top: 40%;
  }
  .accueil .ingredients .images .patate {
    top: 30%;
    width: 17%;
  }
  .accueil .commentaires {
    align-items: center;
  }
  .accueil .commentaires h2 {
    font-size: 32px;
  }
  .accueil .commentaires div {
    margin: 2% 10%;
  }
  .accueil .infolettre .infolettre-texte h2 {
    font-size: 32px;
  }
  .accueil .infolettre .infolettre-texte h3 {
    font-size: 20px;
  }
}
@media screen and (min-width: 1920px) {
  .debut {
    height: 1470px;
  }
  .debut .header-accueil .logo {
    width: 15%;
  }
  .debut .header-accueil nav {
    top: 30px;
    justify-content: flex-start;
  }
  .debut .header-accueil nav a {
    color: white;
    padding: 10px;
    font-size: 30px;
  }
  .debut .header-accueil nav a:hover {
    color: #EFB757;
    transition: all 0.1s;
  }
  .debut .accroche h1 {
    font-size: 120px;
  }
  .debut .accroche a {
    font-size: 48px;
    padding: 24px 44px;
    border: white solid 5px;
  }
  .accueil {
    padding-top: 100px;
  }
  .accueil .valeurs {
    height: 80vh;
  }
  .accueil .valeurs h2 {
    font-size: 84px;
  }
  .accueil .valeurs .slider .valeur {
    margin-right: 200px;
    font-size: 48px;
    padding: 150px;
  }
  .accueil .ingredients {
    height: 100%;
    overflow: visible;
    padding-top: 400px;
  }
  .accueil .ingredients h2 {
    text-align: center;
    margin: 0 10%;
    font-size: 84px;
  }
  .accueil .ingredients .images {
    height: 1200px;
    overflow: visible;
  }
  .accueil .ingredients .images .carotte {
    overflow: visible;
    position: absolute;
    width: 50%;
    left: -10%;
    z-index: 10;
  }
  .accueil .ingredients .images .concombre {
    position: absolute;
    width: 16%;
    left: 23%;
    top: 5%;
  }
  .accueil .ingredients .images .piment {
    position: absolute;
    left: 32%;
    top: 20%;
    width: 25%;
  }
  .accueil .ingredients .images .tomate {
    position: absolute;
    left: 47%;
    top: 34%;
    width: 21%;
  }
  .accueil .ingredients .images .avocat {
    position: absolute;
    left: 55%;
    top: 5%;
    width: 16%;
  }
  .accueil .ingredients .images .patate {
    position: absolute;
    left: 68%;
    top: -1%;
    width: 16%;
  }
  .accueil .ingredients .images .salade {
    position: absolute;
    left: 71%;
    top: 15%;
    width: 35%;
  }
  .accueil .commentaires h2 {
    font-size: 84px;
  }
  .accueil .commentaires div {
    margin: 52px auto;
    padding: 40px;
    border: solid black 5px;
  }
  .accueil .commentaires div p {
    font-size: 30px;
  }
  .accueil .infolettre {
    padding: 30px;
    display: flex;
    gap: 5%;
    justify-content: center;
    align-items: center;
  }
  .accueil .infolettre .infolettre-texte h2 {
    font-size: 48px;
  }
  .accueil .infolettre .infolettre-texte h3 {
    font-size: 32px;
  }
  .accueil .infolettre .infolettre-texte .erreur {
    font-size: 30px;
  }
  .accueil .infolettre .clients {
    display: flex;
    flex-direction: column;
    width: 50%;
  }
  .accueil .infolettre .clients form {
    position: relative;
    left: -10px;
  }
  .accueil .infolettre .clients form input[type=text],
  .accueil .infolettre .clients form input[type=submit] {
    font-size: 24px;
  }
  .accueil .infolettre .clients form input {
    color: #384873;
    margin: 10px;
    font-size: 24px;
  }
}
.a-propos {
  border-top: 3px white solid;
  margin-top: 13px;
  padding: 0 5%;
  padding-bottom: 120px;
  min-height: 80vh;
  border-radius: 1px;
}
.a-propos h1 {
  font-size: 60px;
  padding-top: 27px;
  padding-bottom: 68px;
}
.a-propos .colonnes .texte {
  overflow: hidden;
}
.a-propos .colonnes .texte p {
  padding-bottom: 40px;
  animation: apparution 1s;
}
.a-propos .colonnes .images {
  overflow: hidden;
}
.a-propos .colonnes .images .accueillant {
  width: 100%;
  animation: apparution 1s;
}
.a-propos .colonnes .images .convivial {
  width: 100%;
  animation: apparution 1s;
}
.a-propos .colonnes .images .familial {
  width: 100%;
  animation: apparution 1s;
}

@media screen and (min-width: 1920px) {
  .a-propos .colonnes {
    display: flex;
    gap: 5%;
  }
  .a-propos .colonnes .images {
    overflow: visible;
    display: grid;
    grid-template-rows: repeat(7, 10%);
    grid-template-columns: repeat(9, 100px);
  }
  .a-propos .colonnes .images .cache {
    transition: none;
  }
  .a-propos .colonnes .images .accueillant {
    width: 100%;
    grid-column: 1/9;
  }
  .a-propos .colonnes .images .convivial {
    overflow: visible;
    width: 100%;
    grid-column: 7/11;
    z-index: 10;
    grid-row: 3;
  }
  .a-propos .colonnes .images .familial {
    width: 100%;
    grid-row: 4/6;
    grid-column: 2/6;
  }
}
@media screen and (min-width: 1440px) {
  .colonnes {
    display: flex;
    gap: 5%;
    justify-content: center;
  }
  .colonnes .images {
    width: 300%;
  }
}
.emplacement {
  border-top: 3px white solid;
  border-radius: 1px;
  margin-top: 13px;
  padding: 0 5%;
  padding-bottom: 120px;
  min-height: 80vh;
}
.emplacement h1 {
  font-size: 60px;
  padding-top: 27px;
  padding-bottom: 68px;
}
.emplacement .colonnes {
  display: flex;
  gap: 10%;
  animation: apparution 1s;
}
.emplacement .colonnes .texte {
  width: 100%;
}
.emplacement .colonnes .texte .infos {
  padding-top: 58px;
}
.emplacement .colonnes .carte {
  width: 100%;
  height: 100%;
}
.emplacement .colonnes .carte iframe {
  min-width: 300px;
  min-height: 600px;
  width: 100%;
}

.menu {
  border-top: 3px white solid;
  border-radius: 1px;
  margin-top: 13px;
  padding: 0 5%;
  padding-bottom: 120px;
}
.menu h1 {
  font-size: 60px;
  padding-top: 27px;
  padding-bottom: 68px;
}
.menu h2 {
  font-size: 48px;
}
.menu .plats {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  animation: apparution 1s;
}
.menu .plats .plat {
  display: flex;
  margin: 5% 0;
  border: solid white 5px;
  border-radius: 1px;
  width: 45%;
}
.menu .plats .plat img {
  aspect-ratio: 1/1;
  width: 40%;
  -o-object-fit: cover;
     object-fit: cover;
}
.menu .plats .plat .description {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.menu .plats .plat .description h3 {
  padding: 5%;
  font-size: 48px;
  text-align: center;
}
.menu .plats .plat .description p {
  margin: 1% 5%;
  padding-bottom: 3%;
}
.menu .plats .plat .description .options {
  display: flex;
  flex-direction: column;
}
.menu .plats .plat .description .options a {
  display: block;
}

.connexion {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.connexion h1 {
  font-size: 60px;
}
.connexion .logo-connexion {
  padding: 5% 0;
}
.connexion div {
  padding: 3% 0;
}
.connexion section .erreur {
  margin: 3%;
}

h2 {
  font-size: 48px;
}

.options-admin {
  display: flex;
  justify-content: space-between;
}
.options-admin a {
  margin: 3% 0;
}

.create-edit {
  padding: 0 5%;
  margin-bottom: 10px;
}
.create-edit h1 {
  font-size: 60px;
  margin-bottom: 6%;
}
.create-edit a.btn {
  margin: 6px;
}
.create-edit form {
  justify-items: center;
  margin-top: 6%;
  align-items: center;
  display: flex;
  flex-direction: column;
}
.create-edit form div {
  margin: 2% 0;
}
.create-edit form .texte {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.create-edit form .categories {
  width: 50%;
}

.categories-comptes-admin {
  padding: 0 5%;
}
.categories-comptes-admin h1 {
  font-size: 60px;
}
.categories-comptes-admin .options-admin {
  justify-content: flex-start;
  gap: 5%;
}
.categories-comptes-admin .categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.categories-comptes-admin .categories .categorie {
  display: flex;
  margin: 5%;
  width: 30%;
}
.categories-comptes-admin .categories .categorie .options {
  display: flex;
  gap: 3%;
  width: -webkit-fill-available;
}/*# sourceMappingURL=style.css.map */