* {
  padding: 0;
  margin: 0;
  font-family: 'Lato', sans-serif;
}

a {
  text-decoration: none;
  color: black;
  text-align: center;
}

body {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  background-color: #3b3a37;
  background-image: url('./fondo.jpg');
  background-size: 150%;
}

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: blanchedalmond;
}

#encabezado a:hover {
  color: darkgray;
}

#links {
  grid-row: 2;
  grid-column: 4/10;
  justify-items: center;
  margin-top: 50px;
  text-align: center;
  font-size: 18px;
}

#links li {
  background-color: rgb(255, 225, 181);
  margin: 15px;
  padding: 15px;
  border-radius: 100px;
  border-style: solid;
  border-color: rgb(255, 225, 181);
  ;
}

#links li:hover {
  background-color: rgba(0, 0, 0, .5);
  border-style: solid;
  border-color: rgb(255, 235, 205);
  color: rgb(255, 225, 181);
  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;
  }
}