* {
  margin: 0;
  padding: 0;
  font-size: 18px;
}
body {
  /*background-image: url('../images/agua.jpg');
	background-repeat: repeat;
	background-size: cover;*/
  background-image: url('../imagenes/aguaPlaya.jpg');
  background-attachment: fixed;
  background-size: cover;
}
#todo {
  /*background-color: gray;*/
}
#cabecera {
  margin: 1em auto;
  text-align: center;
}
#cuerpo {
  width: 90%;
  margin: 2em auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
#cuerpo p {
  margin: 0em auto;
  font-family: 'Heebo', sans-serif, 'Calibri';
  color: black;
  /*#3E405D;*/
  font-size: 1em;
  width: 60%;
  text-align: center;
  text-shadow: 1px 1px 2px white;
  /*rgba(0,82,147,0.4);*/
  font-style: bolder;
}
#restaurantes {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: .5em;
}
#restaurantes .restaurante {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  /*border: solid thin silver;*/
  box-shadow: 10px 10px 5px rgba(0, 82, 147, 0.4);
  border-radius: 50%;
  text-align: center;
  margin-top: 1.5em;
  margin-bottom: 1em;
  padding: 1.5em;
  font-family: "Calibri";
  background-color: rgba(203, 203, 191, 0.7);
}
#restaurantes .restaurante .linea {
  margin-top: .5em;
  margin-bottom: .5em;
}
#restaurantes .restaurante .linea img {
  border: 0 none white;
  outline: none;
  background-color: transparent;
}
#restaurantes .restaurante .pieRestaurante {
  margin-top: .5em;
  justify-content: flex-end;
}
#restaurantes .restaurante .pieRestaurante .lineaNombre {
  font-size: 1.5em;
  color: #0E526C;
}
#restaurantes .restaurante .pieRestaurante .iconos {
  display: flex;
  justify-content: space-around;
}
.llamar {
  display: none;
}
[class^="icon-"],
[class*=" icon-"] {
  background-color: transparent;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  padding-right: .5em;
}
.conicono {
  vertical-align: middle;
  color: grey;
  font-size: 1.2em;
}
@media (max-width: 640px) {
  * {
    font-size: 16px;
  }
  body {
    background-image: url('../imagenes/pisadasPlaya.jpg');
    background-attachment: fixed;
    background-size: contain;
    background-repeat: no-repeat;
  }
  #cuerpo {
    width: 100%;
  }
  #cuerpo p {
    width: 90%;
  }
  #restaurantes {
    margin-left: 1em;
    margin-right: 1em;
    text-align: center;
  }
  #restaurantes .restaurante {
    box-shadow: none;
    border-radius: 1em;
    border: solid thin grey;
    background-color: white;
    margin-bottom: 0;
  }
  #cabecera {
    text-align: center;
  }
  #cabecera img {
    max-width: 90%;
  }
  .telefono {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
  }
  .telefono .tel_letra {
    display: none;
  }
  .telefono .tel_numero {
    border: none;
    background-color: #4A85FF;
    color: white;
    padding: .3em 1em;
    border-radius: .5em;
    font-size: 1.2em;
  }
  .telefono .llamar {
    display: block;
    color: #4A85FF;
    font-size: .8em;
    margin-top: .5em;
    alignment-baseline: middle;
  }
  .telefono .llamar i {
    font-size: .8em;
  }
}
