/*
*, *:before, *:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}*/

.seemore-btn  {
  padding: 20px;
  display: flex;
  color: #e1dfbf;
  text-align: center;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin: 0px auto;
  font-family: 'Pinyon Script';
}



.decorated-button {
  /*color: white;*/
  color: #edcb8b;
  border: none;
  outline: none;
  display: block;
  position: relative;
  font-family: inherit;
  text-decoration: none;
  background-color: transparent;
  transition: color 0.2s ease-in;
}
.decorated-button:hover {
  color: #B99F65;
  cursor: pointer;
}
.decorated-button:hover .button-text {
  background-color: rgba(0, 0, 0, 0.75);
}
.decorated-button:hover .left-decoration:before {
  transform: translate(3px, 3px);
}
.decorated-button:hover .left-decoration:after {
  transform: translate(3px, -3px) rotate(-90deg);
}
.decorated-button:hover .right-decoration:before {
  transform: translate(-3px, 3px) rotate(90deg);
}
.decorated-button:hover .right-decoration:after {
  transform: translate(-3px, -3px) rotate(180deg);
}
.decorated-button .button-text {
  margin: 13px;
  display: block;
  line-height: 1;
  font-size: 26px;
  text-align: center;
  position: relative;
  padding: 15px 25px;
  letter-spacing: 2px;
  background-color: rgba(0, 0, 0, 0.45);
  transition: background-color 0.2s ease-in;
}
.decorated-button .left-decoration {
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
  height: 100%;
  display: block;
  position: absolute;
}
.decorated-button .left-decoration:before {
  top: 0;
  left: 0;
  content: '';
  width: 27px;
  height: 27px;
  display: block;
  position: absolute;
  background: url(https://www.zelda.com/breath-of-the-wild/assets/img/decorations/decorated-button__decoration.svg);
  transition: transform 0.2s ease-in;
}
.decorated-button .left-decoration:after {
  left: 0;
  bottom: 0;
  content: '';
  width: 27px;
  height: 27px;
  display: block;
  position: absolute;
  transform: rotate(-90deg);
  background: url(https://www.zelda.com/breath-of-the-wild/assets/img/decorations/decorated-button__decoration.svg);
  transition: transform 0.2s ease-in;
}
.decorated-button .right-decoration {
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 100%;
  display: block;
  position: absolute;
}
.decorated-button .right-decoration:before {
  top: 0;
  right: 0;
  content: '';
  width: 27px;
  height: 27px;
  display: block;
  position: absolute;
  transform: rotate(90deg);
  background: url(https://www.zelda.com/breath-of-the-wild/assets/img/decorations/decorated-button__decoration.svg);
  transition: transform 0.2s ease-in;
}
.decorated-button .right-decoration:after {
  right: 0;
  bottom: 0;
  content: '';
  width: 27px;
  height: 27px;
  display: block;
  position: absolute;
  transform: rotate(180deg);
  background: url(https://www.zelda.com/breath-of-the-wild/assets/img/decorations/decorated-button__decoration.svg);
  transition: transform 0.2s ease-in;
}

