@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,800");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body,
html {
  font-family: "Open Sans", sans-serif;
  width: 100%;
  min-height: 100%;
  height: 100%;
}

.content {
  text-align: center;
  width: 100%;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.content__error {
  max-width: 370px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.content__error > div p {
  font-size: 9em;
  color: #613228;
  font-weight: 800;
}
.content__error .circle {
  width: 175px;
  height: 175px;
  background: #ccc url("gif/unicorn.gif") center center;
  background-size: cover;
  border-radius: 50%;
  position: relative;
}

.content__caption {
  margin-top: 60px;
}
.content__caption p.caption {
  text-align: center;
  font-size: 2.2em;
  color: #613228;
  white-space: pre;
}
.content__caption p.subcaption {
  text-align: center;
  font-size: 1.1em;
  color: #464646;
}
.content__caption a {
  font-size: 1.1em;
  color: #613228;
  text-align: center;
  display: inline-block;
  margin-top: 60px;
  font-weight: 800;
  text-decoration: none;
  position: relative;
}
.content__caption a::after {
  content: "";
  width: 40%;
  height: 3px;
  background: #eccba1;
  position: absolute;
  left: 0;
  bottom: -10px;
  transition: width 0.3s ease;
}
.content__caption a:hover:after {
  width: 100%;
}

@keyframes showribbon {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}