body {
  background-color: #E3F2FD;
  font-family: 'Cinzel', serif;
  padding: 16px;
  background-image: url("assets/img/west_lake.jpg");
  background-size:  cover;
  background-repeat: no-repeat;
}

.text-center {
  text-align: center;
}

.description {
  width: 512px;
  font-weight: bold;
  margin: auto;
}

h3 {
  font-weight: 700;
}
a {
  text-decoration: none;
  padding: 8px;
  display:inline-block;
}

a:link {
  color:#686963;
}

a:visited {
  color:black;
}

a:hover {
  color:#DB5461;
  -webkit-backface-visibility:hidden;
  backface-visibility:hidden;
  position:relative;
  transition:0.5s color ease;
  text-decoration:none;
  font-size:1em;
}

a:hover::before{
  width:100%;
}

a:hover::after{
  width:100%;
}

a:focus {
  color:#DB5461;
}

a:active {
  color:#8AA29E;
}

a:before{
  top:-0.25em;
}

a:after{
  bottom:-0.25em;
}

a:before,a:after {
  height:2px;
  width:0;
  background:#DB5461;
  left:50%;
  -webkit-transform:translateX(-50%);
          transform:translateX(-50%);
  content: "";
  transition:0.5s all ease;
  -webkit-backface-visibility:hidden;
          backface-visibility:hidden;
  position:absolute;
}