2
0

404.html 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <html>
  2. <head>
  3. <link rel="stylesheet" href="css/normalize.css">
  4. <link rel="stylesheet" href="css/blog.css">
  5. <link href="https://fonts.googleapis.com/css?family=Montserrat:400" rel="stylesheet">
  6. <style>
  7. body {
  8. background-color: #522158;
  9. color: white;
  10. }
  11. main {
  12. background-image: url(img/black-lotus.svg);
  13. background-position: center;
  14. background-origin: content-box;
  15. background-repeat: no-repeat;
  16. background-size: contain;
  17. display:flex;
  18. flex-direction: column;
  19. align-items: center;
  20. justify-content: center;
  21. height: 100vh;
  22. width: 100vw;
  23. padding: 2%;
  24. }
  25. a {
  26. text-decoration: none;
  27. }
  28. #spacer {
  29. flex: 0 0 50%;
  30. }
  31. #message{
  32. flex: 0 0 50%;
  33. color: white;
  34. font-family: "Montserrat", sans-serif;
  35. font-size: 2em;
  36. width:50%;
  37. text-align:center;
  38. }
  39. </style>
  40. </head>
  41. <body>
  42. <a href="/">
  43. <main>
  44. <div id="spacer"></div>
  45. <p id="message">Emptiness - 404</p>
  46. </main>
  47. </a>
  48. </body>
  49. </html>