<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>403 Forbidden</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #1a1a1a;
color: #fff;
text-align: center;
}
.container {
max-width: 600px;
}
h1 {
font-size: 100px;
margin-bottom: 10px;
color: #ff4d4d;
}
p {
font-size: 18px;
margin-bottom: 20px;
}
a {
display: inline-block;
text-decoration: none;
background: #ff4d4d;
color: white;
padding: 10px 20px;
border-radius: 5px;
transition: 0.3s;
}
a:hover {
background: #cc0000;
}
</style>
</head>
<body>
<div class="container">
<h1>403</h1>
<p>Oops! You don't have permission to access this page.</p>
<a href="/">Go to Homepage</a>
</div>
</body>
</html>