@media only screen and (max-width: 990px) {
  html {
    font-size: 0.7em;
  }
}

@media only screen and (max-width: 750px) {
  html {
    font-size: 0.5em;
  }
}

@media only screen and (max-width: 680px) {
  html {
    font-size: 0.33em;
  }
}

body {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  background: rgb(180, 127, 58);
  background: -moz-linear-gradient(0deg, rgba(180, 127, 58, 1) 0%, rgba(253, 183, 29, 1) 50%, rgba(252, 247, 69, 1) 100%);
  background: -webkit-linear-gradient(0deg, rgba(180, 127, 58, 1) 0%, rgba(253, 183, 29, 1) 50%, rgba(252, 247, 69, 1) 100%);
  background: linear-gradient(0deg, rgba(180, 127, 58, 1) 0%, rgba(253, 183, 29, 1) 50%, rgba(252, 247, 69, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#b47f3a", endColorstr="#fcf745", GradientType=1);
  background-size: auto;
  background-repeat: no-repeat;
  overflow-y: scroll;
  overflow-x: hidden;
  gap: 1em;
}

span {
  font-family: 'Urbanist', sans-serif;
  font-size: 0.9em;
  color: black;
}

.return {
  height: 3em;
  width: 10em;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: 0.12em white solid;
  color: black;
  border-radius: 0.5em;
  font-family: 'Urbanist', sans-serif;
  font-size: 1.1em;
  box-shadow: 0em 0em 0.4em rgba(0, 0, 0, 0.237);

  cursor: pointer;
  transition: background-color 0.4s, color 0.4s;
  transition: font-size 0.4s;
  transition: box-shadow 0.4s;
}

.return:hover {
  background-color: #f0f0f042;
  color: #f75701;
  font-size: 1.2em;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
}

#inforTitulo {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.fotoMaster {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;

}

#imagenInicio {
  height: 9em;
  margin-top: 1.5em;
}

h1 {
  font-family: 'Urbanist', sans-serif;
  font-size: 3.4em;
  text-shadow: 0.125em 0.125em 0.25em rgba(0, 0, 0, 0.163);

}
.contenedorManual{
  width: 60em;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Ubuntu;
  color: white;
  font-size: 1em;
}

.manualInstrucciones{
  width: 60em;
    border: 0.05em solid white;
    border-radius: 2em;
    background-color: #f7570126;
    box-shadow: 0em 0em 0.4em rgba(0, 0, 0, 0.237);
}
a {
  text-decoration: none;
}



