/*
 * 21/12/2020
 */

body {
  background: #f3f3f3;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
}

a {
  color: chocolate;
  font-weight: bold;
  text-decoration: none;
}
a:hover {
  color: orangered;
}
a { transition: color 0.8s linear 0.2s; }

img {
  border: 3px solid #000;
  width: 100%;
}

.uw-contenedor {
  /* height: 96vh; */
  margin: 0 auto;
  max-width: 1080px;
  text-align: center;
}



@media screen and (max-width: 992px) {
  img {
    height: 800px;
    width: 800px;
  }
}
@media screen and (max-width: 768px) {
  img {
    height: 600px;
    width: 600px;
  }
}
@media screen and (max-width: 576px) {
  img {
    height: 300px;
    width: 300px;
  }
}