@import url('https://cdn.jsdelivr.net/npm/normalize.css@8.0.1/normalize.css');
@import url('https://fonts.googleapis.com/css?family=M+PLUS+1p|Roboto:400,900|Alegreya+SC');
* {
  margin: 0;
  padding: 0;
}

body {
  background: #f5f5f5;
  font-family: 'Roboto', 'M PLUS 1p';
  line-height: 200%;
  letter-spacing: 1.5px;
  font-size: 11px;
  color: #555;
}

a {
  color: inherit;
}

img {
  width: 100%;
}

#app {
  border-radius: 4px;
  padding: 10%;
  transition: all 0.2s;
  max-width: 400px;
}

.outline {
  position: fixed;
  color: #ddd;
  top: 10%;
  left: 5%;
  z-index: 29;
  width: 80%;
  border-radius: 3px;
  background: rgba(10, 10, 10, .9);
  padding: 40px 5%;
}

.outline ul {
  padding: 0;
}

.outline li {
  list-style: circle;
  margin: 10px 0 0 20px;
}
.outline-close{
  position: absolute;
  top: -20px;
  right: 5%;
  background: #fff;
  border-radius: 100%;
  text-align: center;
  line-height: 40px;
  width: 40px;
  height: 40px;
}

.button {
  display: fit-content;
  margin: 0 auto;
}

.box {
  padding: 50px 0;
}

.box li {
  position: relative;
  padding: 30px 10%;
  margin-bottom: 50px;
  box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.1);
  background: #fff;
  list-style: none;
}

.content-link {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.content-link a {
  display: inline-block;
  padding: 5px 10px;
  background: linear-gradient(to right, rgb(242, 112, 156), rgb(255, 148, 114));
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
  font-size: 85%;
  font-weight: bold;
  letter-spacing: 2px;
  transition: .3s;
}

.content-link a:hover {
  position: relative;
  -webkit-background-clip: text;
  color: transparent;
  border-left: 1px solid rgb(242, 112, 156);
  border-right: 1px solid rgb(255, 148, 114);
}

.content-link a:hover:before,
.content-link a:hover:after {
  position: absolute;
  left: 0;
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, rgb(242, 112, 156), rgb(255, 148, 114));
}

.content-link a:hover:before {
  top: 0;
}

.content-link a:hover:after {
  bottom: 0;
}

.content-link a:first-child {
  margin: 0 20px 0 0;
}

.content-outline {
  margin: 15px 0 0;
}

h1 {
  font-family: 'Alegreya SC';
  font-size: 200%;
  letter-spacing: 10px;
  color: #555;
  padding-top: 50px;
  font-weight: normal;
  margin: 0;
}

h2 {
  display: none;
}

h3 {
  font-weight: bold;
  color: #bbb;
  font-size: 90%;
}

del {
  color: rgba(0, 0, 0, 0.3);
}

footer {
  line-height: 50px;
  letter-spacing: 2px;
  font-size: 80%;
  text-align: center;
}
