body {
  font-family: "Roboto", sans-serif;
}

/*---------------------------------------------------------------------*/
/* Contenido general del main */
main {
  margin: auto;
  width: 80%;
}

h1 {
  text-align: center;
  font-size: 7vw;
  padding: 50px 0 20px;
  opacity: 0.5;
}

h2 {
  font-size: 5vw;
  text-align: center;
  padding: 2vw 0 2vw 0;
  text-shadow: 2px 0px 10px rgba(0, 0, 0, 0.7);
}

h3{
  font-size: 3vw;
  font-weight: bold;
  line-height: 4vw;
  padding: 2.5vw 0 2vw 0;
}

h4{
  font-size: 2.5vw;
  line-height: 4vw;
  padding: 2.5vw 0 2vw 0;
}

#inicio{
  p{
    text-align: center;
  }
}

.indice a:hover, .indice a:active{
  color: rgb(124, 124, 11);
}

.indice{
  
  padding-left: 2vw;
  border: 1px solid black;
}

.indice a{
  display: block;
  width: auto;
  padding-left: 2vw;
  font-weight: bold;
  font-size: 2.5vw;
  line-height: 3vw;
  color: rgb(0, 0, 0);
  text-decoration: solid;
}

.text div{
  padding: 0 0 3vw 0;
}

.text a{
  display: block;
  width: 100%;
  top: 15%;
  left: 0%;
  text-align: center;
  color: rgb(22, 22, 22);
  text-decoration: solid;
  font-weight: bold;
  font-size: 20px;
  background-color: rgba(112, 112, 112, 0.5);
}

.text ul{
  margin: 0 5vw;
  font-size: 2.5vw;
  line-height: 4vw;
  list-style-type: circle
}

.text p {
  font-family: "Reddit Mono", monospace;;
  padding-left: 2vw;
  line-height: 1.5;
  font-size: 2vw;
}

.text img{
  width: 100%;
}

footer{
  background-color: rgba(94, 94, 94, 0.4);
  text-align: center;
  width: 80%;
  margin: auto;
}

footer .icons{
  display: flex;
  align-self: center;
  justify-content: space-around ;
  width: 30%;
  margin: auto;
  padding: 0 0 1vw 0;
}

.icons img{
  width: 3vw;
}

/*--------------------------*/
/* Modo claro/oscuro */

/* Estilos para el modo claro */
body {
  background: linear-gradient(rgb(158, 158, 158), rgb(218, 218, 218), rgb(218, 218, 218), rgb(218, 218, 218), rgb(117, 117, 117));
  background-color: #ffffff;
  color: #000000;
}

/* Estilos para el modo oscuro */
body.dark-mode {
  background: linear-gradient(rgb(0, 0, 0), rgb(16, 7, 66), rgb(16, 7, 66), rgb(0, 0, 0));
  color: #ffffff;

  h1 {
    color: rgb(255, 255, 255);
    text-shadow: 1px 0px 5px rgba(255, 255, 255, 0.5);
  }
}

/* Responsive */
