/* Estilos generales*/
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Lato', sans-serif;
  
}
body{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  background-image: url(../images/italian-cuisine-6903774_1280.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; 
  color: rgb(19, 244, 19);
}

/* Estilos de modo Light-Dark*/
.dark {
  background-color: rgba(0, 0, 0, 0.684);
  color: rgb(60, 255, 0);
  border-radius: 50px;
}




/* Contenido */

#container{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  width: 80vw;
  max-width: 600px;  
  background-color: re;
  background-color: rgba(255, 255, 255, 0.3);
  border: 5px solid black;
  border-radius: 0 50px;
}
h1{
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  color: black;
  font-size: 3rem;
  width: 100%;
  margin-top: 20px;
  padding: 5px;
}
#boton{
  height: 30px;
  border-radius: 15px;
  padding: 5px 10px;
  font-weight: bold;
  border: 5px solid #022628;
  cursor: pointer;
  margin: 10px 10px;
  user-select: none;
}

button{
  background-color: rgb(60, 255, 0);

}

p{
  font-size: 16px;
  font-weight: bolder;
  padding: 5px;
  color: black;
  user-select: none;
  background-color: rgb(60, 255, 0);
  border-radius: 0 20px;
  width: auto
}

ul{
  width: 100%;
  height: 100%;
}

li{
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  background-color: rgb(60, 255, 0);
  color: black;
  border-radius: 0 20px;
  
}

.container-toppings{
  width: 70%;
}

.topping{
  font-size: 2rem;
  font-weight: bold;
  /* color: black; */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70px;
  margin: 15px 0;
  cursor: pointer;
  user-select: none;
}

