/* defaults */

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    /* background-color: black; */
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smooth: always;
    text-rendering: optimizeLegibility;
}

::selection {
    background-color: rgba(0, 0, 0, 0.25);
    color: white;
}

::-moz-selection {
    background-color: rgba(0, 0, 0, 0.25);
    color: white;
}

ol, ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: black;
}

a :hover {
    z-index: 10000000;
}

.hidden {
    display: none;
}



/* Début de mon code  */

.fondbleu {
  background-color:  rgb(0, 150, 177) ;
}

.grid {
  display: grid;
  row-gap: 1em;
  font-family: Plain;
  margin-left: 10%;
  margin-right: 10%;
  align-items: center;
  grid-template-columns: repeat(auto-fill, minmax(8rem, 1fr));
  grid-auto-rows: 1fr;
}

.centre {
  margin: 0 auto;
  width: 50%;
  
}

.texte {
  font-size: var(--sizeVW);
  color: white;
  text-align: center;
vertical-align: middle;
margin: auto;
}

.legende {
  font-size: var(--sizeVW);
  color: white;
  text-align: center;
vertical-align: middle;
margin: auto;
}

.grid::before {
  content: '';
  width: 0;
  padding-bottom: 100%;
  grid-row: 1 / 1;
  grid-column: 1 / 1;
}

.grid > *:first-child {
  grid-row: 1 / 1;
  grid-column: 1 / 1;
}

/* Just to make the grid visible */

/* .grid > * {
  background: rgba(0,0,0,0.1);
  border: 1px white solid;
} */

.titre2 {
    font-size: 5vw;
    z-index: 1000;
    font-family: Plain;
    position:  static;
      padding-top: 1rem;
      padding-bottom: 1rem;
      justify-content: center;
      align-items: center;
      text-align: center;
      overflow: hidden;
      color: black;
    }

.ingredients {
  display: grid;
    width: 90%;
    height: 90%;
    border-radius: 100%;
    background-color: black;
    /* border-width:0.5vw;
 border-style:dashed;
 border-color:black; */
 transition: background-color 0.5s ;
 -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
}

.ingredients:hover {
  background-color: rgb(131, 146, 130);
}


.order {
  color: rgb(255, 255, 255);
font-size: 3vw;
font-family: Plain;
margin: 0;
position: absolute;
bottom: 0%;
left: 50%;
transform: translate(-50%, -50%);
}

.prepare {
  display: grid;
    width: 90%;
    height: 90%;
    border-radius: 100%;
    /* border-width:0.5vw;
 border-style:dashed;
 border-color:black; */
 transition: background-color 0.5s ;
 -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
  background-color: rgb(0, 209, 0);
}

.bouton {
  font-size: 2vw;
  font-family: Plain;
  background-color: rgb(0, 0, 0);
  color: white;
  margin: 0;
position: absolute;
padding: 0.5% 0.5% 0.5% 0.5% ;
bottom: 15%;
left: 50%;
transform: translate(-50%, -50%);
  border-radius: 10%;
  transition: border-radius 1s, mix-blend-mode 1s;
  display: none;
}

.display {
  display: initial;
}

.bouton:hover{
  border-radius: 35%;
}


.oignons_legende {
position: static;
text-align: center;
overflow: scroll;
}

/* */

