@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}
body {
  height: 100vh;
  display: grid;
  grid-template-rows: 10% 1fr;
}
a {
  text-decoration: none;
}
header {
  padding: 1rem;
  display: flex;
  justify-content: center;
}
.container_restaurantes {
  height: 100%;
  display: flex;
}
.restaurante {
  display: flex;
  align-items: center;
  justify-content: center;

  height: 100%;
  width: 0;
  flex-grow: 1;
  transition: 0.2s;

  background-position: center center;
  background-size: cover;
}
.restaurante h1 {
  padding: 1rem;
  text-align: center;
  color: white;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.restaurante:hover {
  flex-grow: 2;
}
.restaurante:nth-child(1) {
  background-image: url(../img/doñana_ii.jpg);
}
.restaurante:nth-child(2) {
  background-image: url(../img/finca_el_palomar.jpg);
}
.restaurante:nth-child(3) {
  background-image: url(../img/la_barrica.webp);
}
.restaurante:nth-child(4) {
  background-image: url(../img/la_marisma.jpg);
}
