<title>Under Construction</title>
<link href="https://fonts.googleapis.com/css?family=Bungee" rel="stylesheet">
<style>
  body {
    position: relative;
  }

  a {
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    transform: translate(0, -50%);
    font-size: 50px;
    font-family: 'Bungee';
    color: darkgray;
    text-decoration: none;
    transition: color 500ms;
  }

  a:hover {
    color: blue;
    text-decoration: underline;
  }
</style>
<a href="https://notapipe.fun">This site is <i>under construction</i>.</a>
