html,body {
    margin: 0;

    min-height: 100vh;

    --bg: #101010;
    --darkerBg: #0c0c0c;

    --text-white: #fafdff;
    --text-gray: #919191;

    --neon-green: #baf122;
    --neon-red: #d12b2b;
    --neon-purple: #4e15bd;
    --neon-yellow: #feff4a;
    --neon-blue: #0072be;

    --pixeland-magenta: #ff00ff;
    --pixeland-yellow: #FFFF00;
    --pixeland-blue: #00FFFF;

    --transition-ms: 0.15s;

    --page-padding-md: 2rem;


    --mobile: 720px;

    --input-border: 1px solid #333;
    --input-border-focus: #555;
    --input-bg: #1a1a1a;
    --input-padding: 0.75em 1em;
    --input-radius:  0.375em;
    --input-height: 4rem;
}

* {
    box-sizing: border-box;
}

body {
    background-color: var(--bg);
    font-family: Sora, sans-serif;
    width: 100vw;
    height: 100vh;

    background-image: url("/GBZ_4474.jpg");
    background-size: cover;
}

h1, h2, h3, h4, h5 {
    font-family: Manrope, sans-serif;
    font-weight: 800;
    color: var(--text-white);
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0;
}

p {
    color: #e6e6e6;
    line-height: 1.7;
    margin: 1rem 0;
}

a {
    text-decoration: none;
    color: #fff;

    font-weight: bold;
}


body {
    background-color: #101010;
    position: relative;
}

video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;

    z-index: 500;

    height: 100%;
    width: 100%;

    background: radial-gradient(circle, #000000bf 40%, #0000);
}

.texts {
    position: absolute;
    top: 50%;
    padding: 3rem;
    width: 100%;
    text-align: center;

    transform: translateY(-50%);

    z-index: 1000;

    display: flex;
    align-items: center;
    flex-direction: column;

    img {
        height: 3rem;
    }
}

.links {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.init {
    font-size: 2rem;
    margin-top: 3rem;
}
