@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300&family=Poppins:ital,wght@1,500&display=swap');
*{
  margin: 0;
  padding: 0;
 font-family: Arial, Helvetica, sans-serif;
}

body {
  min-height: 100vh;
  background-color: #333;
}

main{
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 5%;

}


.titulo{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 4%;
  font-size: 30px;
  color: #fff;
}
header {
  background-color: #000;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  margin-right: 10%;
  color: #fff;
  margin-left: 5%;
}

span{
  margin-left: 10%;
}

.logo img {
  height: 40px;

}

nav {
  text-align: right;
  margin-right: 5%;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

nav li {
  display: inline-block;
  margin-left: 10px;
}

nav a {
  display: block;
  padding: 5px 10px;
  text-decoration: none;
  color: #fff;
}

nav a:hover {
  background-color: #333;
}


footer{
  background-color: #000;
  color: #fff;
  display: flex;
  grid-template-columns: 30% 15% 15% 20%;
  column-gap: 5%;
  padding: 1rem;
  justify-content: space-evenly;
  align-items: center;

}
footer ul{
  padding:0;
}
footer li{
  list-style: none;
}

.logo-element_footer{
  display: flex;
  margin: 2rem 0;
}
.logo-element_footer img{
  max-height: 75px;
}
.element-footer h5{
  margin: 1rem 0;
}
.text-element-footer li{
  line-height: 2;
}
.link-elements-footer li a{
  color:#FFC300;
}
.rrss-element-footer ul{
  display: flex;
  flex-flow: wrap;
}
.rrss-element-footer img{
  width: 35px;
}
.rrss-element-footer li{
  margin-right: 1rem;
}


.card {
  height: 450px;
  width: 300px;
  margin: 10px;
  transition: 300ms;


}

.container{
display: flex;
flex-wrap: wrap;
align-items: center;
}

.comida1, .comida2, .comida3, .comida4{
  height: 390px;
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(0, 0, 5);
  border-radius: 10%;
  transition: 500ms;
}

.imgComida1{
  height: 160px;
  width: 200px;
  background-image: url(images/hamburguer.jpg);
  background-size: cover;
  margin-bottom: 200px;
  transition: 300ms;
}


.imgComida2{
  height: 160px;
  width: 200px;
  background-image: url(images/papasfritas.jpg);
  background-size: cover;
  margin-bottom: 200px;
  transition: 300ms;
}

.imgComida3{
  height: 160px;
  width: 200px;
  background-image: url(images/hotdog.webp);
  background-size: cover;
  margin-bottom: 200px;
  transition: 300ms;
  
}
.imgComida4{
  height: 160px;
  width: 200px;
  background-image: url(images/burrito.webp);
  background-size: cover;
  margin-bottom: 200px;
  transition: 300ms;
  
}


.detalle1, .detalle2, .detalle3, .detalle4{
  height: 190px;
  width: 280px;
  background-color: #fff;
  position: absolute;
  border-radius: 10%;
  margin-top: 170px;
  border: black;
  z-index: 1;
  display: grid;
  grid-template-rows: .4fr .1fr .1fr .3fr;
  transition: 300ms;
  justify-content: center;
  align-items: center;
}

.botonPedir{
  background-color: black;
  color: white;
  height: 25px;
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}

.btn
{
  display: flex;
  justify-content: center;
  align-items: center;
}