@import url("https://fonts.googleapis.com/css?family=Overpass:300,400&display=swap");
* {
  box-sizing: border-box;
}
*::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: 'Overpass', sans-serif;
  font-size: 1em;
  font-weight: 300;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  min-height: 100vh;
  color: #2e2e2e;
  background: #fff;
}
@media (min-width: 48rem) {
  body {
    font-size: 1.25em;
  }
}

#container {
  margin: auto;
  padding: 0 1rem;
  max-width: 48rem;
  width: 100%;
}

a {
  text-decoration: none;
  color: black;
  cursor: pointer;
}

.link {
  position: relative;
  transition: -webkit-clip-path 275ms ease;
  transition: clip-path 275ms ease;
  transition: clip-path 275ms ease, -webkit-clip-path 275ms ease;
}
.link:hover span::before, .link:focus span::before {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.link span {
  position: relative;
  display: inline-block;
  color: #2c2fe8;
}
.link span::before {
  position: absolute;
  content: attr(data-content);
  color: #1619cb;
  text-decoration: underline;
  -webkit-text-decoration-color: #1619cb;
          text-decoration-color: #1619cb;
  -webkit-clip-path: polygon(0 0, 0 0, 0% 100%, 0 100%);
          clip-path: polygon(0 0, 0 0, 0% 100%, 0 100%);
  transition: -webkit-clip-path 275ms ease;
  transition: clip-path 275ms ease;
  transition: clip-path 275ms ease, -webkit-clip-path 275ms ease;
}

span.dotted::before {
  -webkit-text-decoration-style: dotted;
          text-decoration-style: dotted;
}

span.dashed::before {
  -webkit-text-decoration-style: dashed;
          text-decoration-style: dashed;
}

span.double::before {
  -webkit-text-decoration-style: double;
          text-decoration-style: double;
}

span.wavy::before {
  -webkit-text-decoration-style: wavy;
          text-decoration-style: wavy;
}

span.line-through::before {
  -webkit-text-decoration-line: line-through;
          text-decoration-line: line-through;
}