<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport"  />
    <title>Something went wrong</title>
    <link
      href="https://db.onlinewebfonts.com/c/225646b777438f81ec8400ff378afe2d?family=Houschka+Pro+Medium"
      rel="stylesheet"
    />
    <style>

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      body {
        font-family: Arial, sans-serif;
        background-color: #000;
        background-image: url("https://s7ap1.scene7.com/is/image/TCSCOMuat/planet-png?wid=1900&hei=1069&dpr=off");
        background-size: cover;
        background-position: center;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
      }
      .container {
        text-align: center;
        position: relative;
        width: 100%;
        height: 100%;
        margin: 2rem;
        padding: 2rem;
      }
      h1 {
        display: inline-block;
        font-family: "Houschka Pro Medium";
        font-size: 4.5rem;
        font-weight: 500;
        line-height: 5.375rem;
        margin: 3rem;
      }
      
     
      .buttons {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        position:relative;
        top: 3rem;
        
      }
      .button {
        padding: 10px 20px;
        border-radius: 50%;
        background-color: #fff;
        color: #000;
        text-decoration: none;
        font-weight: bold;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
      }

      .home{
        color: white;
        text-decoration: none;
      }
      .insights{
        color: white;
        text-decoration: none;
      }
    </style>
  </head>
  <body>
    <div class="container">
      <div class="content">
        <h1>Something went wrong</h1>
        <div class="buttons" >
          <a href="#" class="home"><span class="button">&larr;</span> Home</a>
          <a href="#" class="insights"> Insights <span class="button">&rarr;</span></a>
        </div>
         </div>
  </body>
</html>
