@import url("https://fonts.googleapis.com/css2?family=Cardo:ital,wght@0,400;0,700;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:root {
  --marron-princ: #7D6164;
  --naranja-muy-apagado: #816A60;
  --celeste-oscuro-apagado: #25333B;
  --rojo-anaranjado: #C0452F;
  --naranja-apagado: #CAA653;
  --marron-apagado: #6E604F;
  --cardo: "Cardo", serif;
  --open-sans: "Open Sans", sans-serif;
  --league-spartan: "League Spartan", sans-serif;
}

body .botones-ver-mas {
  margin: 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
body .botones-ver-mas a {
  min-width: 190px;
  width: 190px;
  max-width: 190px;
  height: 70px;
  border-radius: 10px;
  background-color: var(--rojo-anaranjado);
  color: #fff;
  text-decoration: none;
  text-align: center;
  padding: 5px 0px;
}

@media screen and (max-width: 576px) {
  body main .muestra .imagen {
    height: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: auto;
  }
  body main .muestra .imagen img {
    height: 75%;
  }
  body main .texto {
    margin-top: -30px;
  }
}