:root {
    --frame-color-1: #00aaff66;
    --frame-color-2: #00061a66;
    --frame-color-3: #00aaff66;

    --heading-line: #9b494966;

    --link-color: #ff3333;
    --link-color-visited: rgb(255, 61, 61);
    --accent-color: #9b4949;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    width: 100%;
    margin: 0;
    font-family: "JetBrains Mono", monospace;
    font-weight: 400;

    background-color: #000000;
    color: #e8e6e3;

    user-select: none;
    visibility: hidden;

    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    background-color: transparent;
    min-height: 100vh;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 0;
}

@property --gradient-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@keyframes rotation {
    0%   { --gradient-angle: 0deg; }
    100% { --gradient-angle: 360deg; }
}




.content-wrapper {
    padding: 8vh 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    z-index: 1;
    width: 100%;
}

.content {
    background-color: #000000;
    text-align: center;
    position: relative;

    width: 80%;
    max-width: 800px;
    padding: 50px 60px;
    border-radius: 12px;
}

.content::before,
.content::after {
    content: "";
    position: absolute;
    inset: -2px;
    z-index: -1;
    background: conic-gradient(
        from var(--gradient-angle),
        var(--frame-color-1),
        var(--frame-color-2),
        var(--frame-color-3),
        var(--frame-color-2),
        var(--frame-color-1)
    );
    border-radius: inherit;
    animation: rotation 30s linear infinite;
}

.content::after {
    filter: blur(3.5rem);
}



#dockedGigaLogo {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

#dockedGigaLogo.is-visible {
    visibility: visible;
    opacity: 1;
}

.logo-stop-container,
.giga-logo-sticky-wrapper {
    width: 100%;
    position: relative;
    margin: 10vh 0;
}

@media (max-width: 768px) {
    .content-wrapper {
        padding-top: 10vh;
    }

    .content {
        width: 100%;
        padding: 40px 20px;
        border-radius: 0;
    }
}



hr {
  border: none;
  height: 4px;
  background-color: var(--accent-color);
  width: 35%;
  margin: 20px 0;
  border-radius: 2px;
}


p {
	margin-bottom: 0;
}