File size: 1,470 Bytes
6f0913d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!doctype html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>500 Internal Server Error</title>
    <style>

      body {

        background-color: #1c1c1e;

        font-family: "Poppins", sans-serif;

        color: #f5f5f7;

      }

      h1 {

        color: #e5e5e7;

        text-align: center;

        margin-bottom: 20px;

      }

      .container {

        background-color: #2c2c2e;

        padding: 30px;

        border-radius: 15px;

        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);

        max-width: 600px;

        margin: 50px auto;

      }

      .section-title {

        color: #ff9f0a;

        font-size: 1.5rem;

        font-weight: bold;

        margin-top: 20px;

        border-bottom: 2px solid #ff9f0a;

        padding-bottom: 10px;

      }

      .btn-reset {

        background-color: #ff453a;

        color: white;

        border: none;

        padding: 10px 20px;

        border-radius: 5px;

        transition: background-color 0.3s ease;

        text-decoration: none;

      }

      .btn-reset:hover {

        background-color: #e03a2f;

      }

    </style>
</head>
<body>
    <div class="container">
        <h1 class="section-title">500 Internal Server Error</h1>
        <p>Oops! Something went wrong on our end.</p>
        <a href="/" class="btn-reset">Go Back to Home</a>
    </div>
</body>
</html>