html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    /* Existing background gradient */
    background: linear-gradient(107deg, #000 17.06%, #08182D 89.94%);
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/background.webp') lightgray 50% / cover no-repeat;
    mix-blend-mode: color-dodge;
    opacity: 0.25; /* 25% transparency */
    z-index: 0; /* Ensure it's behind other content */
}

.container {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    top: 30px;
    width: calc(100% - 60px); /* Subtract left and right margins */
    height: calc(100% - 60px); /* Subtract top and bottom margins */
    margin: 0;
    color: white;
    z-index: 1; /* Ensure it's above the background image */
}

.logo {
    position: absolute;
    top: 0;
    margin: 20px;
    width: 150px; /* Adjust as needed */
    z-index: 1; /* Ensure it's above the background image */
}

.coming-soon {
    position: absolute;
    bottom: 0;
    margin: 20px;
}

h1 {
    margin: 0 0 16px 0;
    color: #FFF;
    font-family: Roboto;
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

p {
    margin: 6px 0 10px 0;
    color: #8C8C8C;
    font-family: Roboto;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

a {
    text-decoration: none;
    margin: 6px 0 10px 0;
    color: #8C8C8C;
    font-family: Roboto;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
a:hover {
    color: #C4C4C4;
}

.p-bold {
    color: #C4C4C4;
    font-family: Roboto;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.reserved {
    position: absolute;
    margin-top: 10px;
}

.reserved p {
    color: #A8A8A8;
    font-family: Roboto;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.015rem;
}

canvas {
  width: 100%;
  height: 100%;
}