:root {
    --font-family: "Code New Roman", monospace;
    /* --font-family: "Hack", monospace; */
    --background-color: #000;
    --text-color: #efeefe;
}

body,
html {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    background-color: var(--background-color);
    color: var(--text-color);
    height: 100%;
    overflow: hidden;
}

#background-code {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.2;
    color: rgba(98, 96, 113, 0.387);
    pointer-events: none;
    display: flex;
    flex-wrap: wrap;
}

h1 {
    text-align: center;
    z-index: 1;
}

.highlight {
    color: #ffffff27;
    /* font-weight: bold; */
}

.content {
    position: relative;
    z-index: 2; /* Increase z-index to appear above the gradient */
    padding: 10px;
    width: fit-content;
    margin: auto;
    margin-top: 20%;
}

.box {
    border: 2px solid var(--text-color);
    width: fit-content;
    margin: auto;
}

.bb {
    border-bottom: 2px solid var(--text-color);
    padding-bottom: 10px;
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 0px;
    text-align: center;
}

.contact {
    display: flex;

    align-items: center;
}

.links {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2; /* Increase z-index to appear above the gradient */
    padding-top: 10px;
}

.whitebox {
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    text-align: center;
}

.emailbox {
    cursor: pointer;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    width: 100%;
    border-left: 2px solid var(--text-color);
    background-color: var(--text-color);
    color: var(--background-color);
    transition: all 0.18s ease-in-out;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.4);
}

.emailbox:hover {
    box-shadow: 0 0 100px rgba(255, 255, 255, 0.8);
}

h1 {
    font-size: 4em;
}

.video-container {
    max-width: 800px;
    margin: 0 auto 2em;
}

.video-container iframe {
    width: 100%;
    height: 450px;
}

.links {
    margin-right: 1em;
}

.links a {
    color: var(--text-color);
    text-decoration: none;
    text-underline-offset: 0.2em;
}

.links a:hover {
    color: var(--text-color);
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.waitlist {
    max-width: 400px;
    margin: 0 auto;
}

.waitlist input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 1em;
}

.waitlist button {
    width: 100%;
    padding: 10px;
    font-size: 1em;
    background-color: var(--text-color);
    color: var(--background-color);
    border: none;
    cursor: pointer;
}

.shimmer {
    transition: color 0.05s ease;
}

.code-column {
    width: 25%;
    height: 100%;
    overflow: hidden;
}

.code-column:nth-child(2),
.code-column:nth-child(3) {
    visibility: hidden;
}

#gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: radial-gradient(
        circle,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        transparent 100%
    );
    pointer-events: none;
}

.toast {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    color: var(--text-color);
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 0.7em;
}

.toast.show {
    visibility: visible;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }
    to {
        bottom: 0;
        opacity: 0;
    }
}
