404 Error


error

404.

<!DOCTYPE html>
<html>
<head>
<title>Error</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<style type="text/css">
body{
margin: 0;
padding: 0;
font-family: "montserrat",sans-serif;
min-height: 100vh;
background-image: linear gradient(125deg,#6a89cc,#b8e994);
}
.container{
width: 100%;
position: absolute;
text-align: center;
color: #343434;
}
.container h1{
font-size: 160px;
margin: 0;
font-weight: 900;
letter-spacing: 20px;
background:url(bg.jpg)center no-repeat;
-webkit-text-fill-color:transparent;
-webkit-background-clip:text;
}
.container a{
text-decoration: none;
background:#e55039;
color: #fff;
padding: 12px 24px;
display: inline-block;
border-right: 25px;
font-size: 14px;
text-transform: uppercase;
transition: 0.4s; 
}
.container a:hover{
background:#e55039;
}
</style>
</head>
<body>
<div class="container">
<h1>Oops!Page not found</h1>
<h1>404</h1>
<p>We can't find the page you're looking for</p>
<a href="#">Go to Home</a>

</body>
</html>