{% extends "borg/base.html" %}
{% load static %}
{% block title %}404: Not Found{% endblock %}
{% block script %}
{% endblock %}
{% block style %}
html, body {
height: 80%;
}
main {
display: flex;
align-items: center;
background-color: aliceblue;
text-align: center;
}
{% endblock %}
{% block body %}
404: Page Not Found
{% endblock %}