@import "banner.css";

:root {
    --o3-bg-color: #121212;
    --o3-primary-fg-color: #FF009A;
    --o3-secondary-fg-color: #C58FF7;
    --o3-font-size: 1.8em;
}

@font-face {
    font-family: pfdinmono;
    src: url(../fonts/PFDinMonoMedium.ttf);
}

html, body {
    font-family: 'pfdinmono';
    font-size: var(--o3-font-size);
    background-color: var(--o3-bg-color);
    color: var(--o3-primary-fg-color);
    height: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    height: 100%;
    text-align: center;
}

a {
    color: var(--o3-primary-fg-color);
    text-decoration: none;
    /*display: block;*/
    opacity: 0.6;
    padding: 20px;
}

a:hover {
    opacity: initial;
    color: var(--o3-secondary-fg-color);
    text-shadow: 0 0 0px red, 0 0 10px red, 0 0 20px red, 0 0 30px red,
    0 0 40px red, 0 0 50px red;
}

.background {
    position: absolute;
    height: 100%;
    width: 100%;
    pointer-events: none;
    background: url("../images/boom.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.3;
}

.main {
    width: 100%;
    margin-top: 2em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gigi-glow {
    color: var(--o3-secondary-fg-color);
    text-shadow: 0 0 0px red, 0 0 10px red, 0 0 20px red, 0 0 30px red,
    0 0 40px red, 0 0 50px red;
}

.title {
    margin-bottom: 40px;
}

.title a {
    padding: 0;
    opacity: 1;
}

o3tt3rli-home {
    position: fixed;
    left: 20px;
    top: 20px;
    height: 0;
}

o3tt3rli-home a {
    padding: 0;
    opacity: 0.2;
}

o3tt3rli-home a:hover {
    opacity: initial;
    color: var(--o3-primary-fg-color);
    text-shadow: none;
}