* {
  padding: 0;
  margin: 0;
  /*font-family: 'Roboto Mono', monospace;*/
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-style: italic;
}

a {
  text-decoration: none;
  /*color: silver;*/
  color: black;
  text-align: center;
}

body {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  /*background: rgb(2,0,36);
  background: linear-gradient(180deg, rgba(2,0,36,1) 0%, rgba(40,40,40,1) 35%, rgba(121,121,121,1) 100%);  background-repeat: no-repeat;*/
  /*background: rgb(255,255,255);
  background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(249,249,249,1) 53%, rgba(226,226,226,1) 100%);*/
  background-color: whitesmoke;
  height: 100%;
  background-attachment: fixed;
}

ul {
  text-decoration: none;
  list-style-type: none;
}

#encabezado {
  grid-row: 1;
  grid-column: 1/13;
  justify-items: center;
  text-align: center;
  margin-top: 50px;
}

#encabezado a {
  color: darkgray;
}

#encabezado a:hover {
  color: black;
}

#links {
  grid-row: 2;
  grid-column: 5/9;
  justify-items: end;
  margin-top: 50px;
  text-align: center;
  font-size: 18px;
}

#links li {
  margin: 15px;
  padding: 15px;
  border-style: solid;
  border-width: thin;
  border-color: darkgray;
}




.bc{
  border: 0; width: 350px; height: 470px;
}





#links li:hover {
  /*background-color: rgba(255, 255, 255, .5);*/
  background-color: white;
  border-style: solid;
  border-color: black;
  color: black;
  transition: background-color .2s ease-out, border-color .2s ease-in;
}



@media screen and (max-width: 760px) {
  body {
    background-size: 300%;
  }
  #links {
    grid-row: 2;
    grid-column: 1/13;
    justify-items: end;
    margin-top: 50px;
    text-align: center;
    font-size: 18px;
  }
}