<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>404 - Page not found</title>
<style>
html {
height: 100%;
min-height: 100%;
display: flex;
flex-direction: column;
}
body {
overflow-y: scroll;
margin: 0;
flex: 1 0 auto;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: #464646;
font-family: Arial, 'Arial', Helvetica, sans-serif;
font-size: 14px;
}
.flex-center {
display: flex;
align-items: center;
justify-content: center;
}
.main-container {
max-width: 1000px;
width: 100%;
flex: 1 0 auto;
flex-direction: column;
padding: 0 20px;
box-sizing: border-box;
margin: 70px 0;
}
.exclamation-wrapper {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 50px;
}
.content-wrapper {
min-height: 231px;
display: flex;
justify-content: flex-start;
align-items: center;
flex-direction: column;
}
h1 {
margin: 0;
padding: 0;
text-align: center;
font-weight: bold;
font-size: 36px;
line-height: 41px;
}
p {
margin: 0;
line-height: 21px;
text-align: center;
}
a {
color: #C74D5A;
text-decoration: none;
white-space: nowrap;
}
a:visited {
color: #C74D5A;
}
.light-text {
color: #717171;
}
.medium-text {
font-size: 16px;
line-height: 21px;
}
.error-description {
margin: 10px 0;
}
.error-code {
font-weight: bold;
line-height: 16px;
}
.error-reason {
max-width: 628px;
margin: 59px 0;
text-align: center;
}
footer {
max-width: 628px;
width: 100%;
flex-wrap: wrap;
padding-top: 20px;
border-top: 1px solid #DDDDDD;
}
.footer-link-wrapper {
position: relative;
padding: 0 7px;
}
.footer-link-wrapper:not(:last-of-type)::after {
position: absolute;
right: 0;
content: "";
display: block;
border-right: 1px solid #DDDDDD;
height: 14px;
}
footer a {
padding: 0 7px;
min-height: 24px;
}
</style>
</head>
<body>
<div class="main-container flex-center">
<div class="exclamation-wrapper">
<svg width="12" height="68" viewBox="0 0 12 68" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M3 0C1.34277 0 0 1.34375 0 3V46C0 47.6562 1.34277 49 3 49H9C10.6572 49 12 47.6562 12 46V3C12 1.34375 10.6572 0 9 0H3ZM3 56C1.34277 56 0 57.3438 0 59V65C0 66.6562 1.34277 68 3 68H9C10.6572 68 12 66.6562 12 65V59C12 57.3438 10.6572 56 9 56H3Z" fill="#464646"/>
</svg>
</div>
<div class="content-wrapper">
<h1>the page cannot be found</h1>
<div class="error-description">
<p>The page you are looking for does not exist</p>
<p>or has been removed</p>
</div>
</div>
<footer class="flex-center">
<span class="footer-link-wrapper flex-center">
<a class="flex-center" href="https://ro.uow.edu.au/">Go to homepage</a>
</span>
</footer>
</div>
</body>
</html>