body {
  font-family: Arial, sans-serif;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-image: url(braseria2.jpeg);
}

.col {
  padding: 10px;
  background-color: #f3e8c8;
  border-radius: 20px;
  width: 80%;
  margin: auto;
}

h1 {
  text-align: center;
}

h2 {
  background-color: #f1e3bc;
  padding: 10px;
}

ul {
  list-style: none;
  padding: 0;
}

li {
  margin-bottom: 5px;
}

a.boton-enlace {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.side-deco-right {
  display: none;
}

@media screen and (min-width: 900px) {

  .side-deco-left {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 30%;
    height: 100vh;
  }

  .side-deco-right {
    display: block;
    position: fixed;
    right: 0;
    top: 0;
    width: 30%;
    height: 100vh;
  }

}