/* All rights reserved. Copyright Blokalyze. */
/* Created: 2025-06-15 */
@import url('colors.css');
@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@500;600&family=Orbitron&display=swap');


body {
    margin: 0;
    font-family: 'Orbitron', sans-serif;
    background-color: var(--background-color);
    color: var(--main-text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: auto;
    overscroll-behavior: none;
    position: relative;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.container {
    position: relative;
    text-align: center;
    display: flex;
    z-index: 2;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    padding-bottom: 40px;
    overflow: visible;
}

.logo {
    margin-top: 50px;
}

.logo {
    width: 180px;
    filter: drop-shadow(0 0 10px var(--logo-color));
}

h1, p {
    margin: 10px 0;
}

.links a {
    display: block;
    background: var(--link-primary-color);
    color: var(--main-text-color);
    padding: 18px;
    margin: 20px auto;
    width: 280px;
    text-decoration: none;
    font-size: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 0 12px var(--link-secondary-color), 0 0 50px var(--link-hover-color);
    transition: 0.3s;
}

.links a:hover {
    transform: scale(1.08);
    box-shadow: 0 0 22px var(--link-active-color), 0 0 70px var(--link-secondary-color);
}

.links i {
    margin-right: 10px;
}

.site-footer {
    margin-top: 10px;
    padding: 18px 20px 28px;
    color: rgba(255, 255, 255, 0.58);
    font-family: 'Chakra Petch', sans-serif;
    font-size: 12px;
    letter-spacing: 0;
    text-align: center;
}

.site-footer p {
    margin: 0;
}
