body {
  background-image: url(C:/Users/rcuiz/Documents/CTR/fondoctr1.jpg);
  font-family: sans-serif;
  padding: 20px;
}

h1 {
  font-size: 40px;
  margin-top: 0;
  margin-bottom: 15px;
}

h2 {
  font-size: 30px;
}

.established {
  font-style: italic;
}

h1, h2, p {
  text-align: center;
}

.menu {
  width: 100%;
  background: rgba(129, 29, 84, 0.6);
  margin-left: auto;
  margin-right: auto;
  /*padding: 5px;*/
  max-width: 1000px;
}

.IM1 {
  display: block;

  max-width: 100%;
  width: 330px;
  height: 100px;
}
.IM2 {
  display: block;

  max-width: 100%;
  width: 800px;
  height: 320px;
}
.IM3 {
  display: block;

  max-width: 100%;
  width: 350px;
  height: 400px;
}
.IM4 {
  display: block;

  max-width: 100%;
  width: 350px;
  height: 300px;
}
.my-button {
  padding: 10px 20px;
  background-color: #ce8b27;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size : 30px;
}
.my-button:hover {
  background-color:  #a1367d;
}
.my-button:active {
  background-color: #462c06;
}
.contenedor {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  
}
.texto {
  color:white;
}
.tabla
{
   /* float: right;*/
    border: 0px solid black;
    width: 100%;
  /*  margin-left: 10px;*/
    
    /*margin-bottom: 20px;*/
    background: rgba(129, 29, 84, 0.6);
    padding-top: 20px;
    padding-bottom: 20px;
    /*padding-left: 5px;
    padding-right: 5px;*/
    
  margin-bottom: 5px;
}

.datos
{
    border-collapse: collapse;
    width: 90%;
    margin: 0 auto;
}

.datos td
{
    border: 0px solid #fff;
    text-align: center;
    padding: 10px;

    font-weight: bolder;
    color:#fff;;
}

.datos th
{
    border: 0px solid #fff;
    text-align: center;
    padding: 10px;
    font-weight: normal;
    color:#fff;
    font-size:200%;
    font-family:Impact, serif;   
}
.tabla2 td
{
    border: 0px solid #fff;
    text-align: center;
    padding: 5px;

    font-weight: bolder;
    color:#fff;
    width:33%;
}

img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.img-fluid {
  max-width: 100%;
  height: auto;
}
hr {
  height: 2px;
  background-color: brown;
  border-color: brown;
}

.bottom-line {
  margin-top: 25px;
}

h1, h2 {
  font-family: Impact, serif;
  color:#fff;
  font-size:300%;
  font-weight: normal;

  padding: 0;
  margin-bottom: 5px;
}

.item p {
  display: inline-block;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 18px;
}

.flavor, .dessert {
  text-align: left;
  width: 75%;
}

.price {
  text-align: right;
  width: 25%;
}

/* FOOTER */

footer {
  font-size: 14px;
}

.address {
  margin-bottom: 5px;
}

a {
  color: black;
}

a:visited {
  color: black;
}

a:hover {
  color: brown;
}

a:active {
  color: brown;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

.contenedor { 
  width: auto%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}

.contenedor figure {
  position: relative;
  width: 320px;
  height: 230px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0px 15px 25px rgba(0,0,0,0.50);
}

.contenedor figure img {
  width: 100%;
  height: 100%;
  transition: all 400ms ease-out;
  will-change: transform;
}

.contenedor figure .capa {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(92, 17, 67, 0.7);
  transition: all 400ms ease-out;
  opacity: 0;
  visibility: hidden;
  text-align: center;
}

.contenedor figure:hover > .capa {
  opacity: 1;
  visibility: visible;
}

.contenedor figure:hover > img {
  transform: scale(1.3);
}

.contenedor figure .capa h3 {
  color: #fff;
  font-weight: 400;
  margin: 70px 0 15px;
  transition: all 400ms ease-out;
}

.contenedor figure .capa p {
  color: #fff;
  font-size: 25px;
  line-height: 1.5;
  max-width: 220px;
  margin: auto;
}




