html {
    width: 100%;
    height: 100%;
}

body {
    background-color: black;
    /*overflow: hidden;*/
    font-variant-numeric: lining-nums;
    font-family: freight-sans-pro, sans-serif;
}

canvas {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    transition: filter 3s ease;
    transition: opacity 3s ease;
}

.blurred {
    opacity: 0.5;
}

#debug {
    display: block;
    white-space: pre-line;
    position: absolute;
    bottom: 4px;
    right: 10px;
    color: #ff0;
    font: 300 36px monospace;
    text-align: right;
}

.callouts {
    position: absolute;
    opacity: 0;
    transition: opacity ease 1s;
}

.callout {
    position: absolute;
    transform: translate(-50%, -50%);
    font-size: 45px;
    fontw-weight: 300;

    color: #00CDFA;
    text-shadow: 0 0 8px #69ffe280;

    cursor: pointer;
    opacity: 1;

    left: 0;
    top: 0;

    width: 250px;
    text-align: center;
}

.callout em {
    font-style: normal;
    font-weight: 400;
}

.callout.selected {
    color: rgb(255, 0, 128);
    text-shadow: 0 0 8px rgba(250, 0, 128, 0.5);
}

.visible {
    opacity: 1 !important;
}

.hidden {
    display: none;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.overlay-dimmer {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 0;

    pointer-events: none;
    background-color: rgba(0,0,0, 0.5);

    transition: width 0.30s ease-in-out;
}

.overlay-dimmer-split {
    width: calc(50% + 54px);
}

.overlay-dimmer-full {
    width: 100%;
}

.overlay h1 {
    font-size: 100px;
    font-weight: 300;
    margin: 0;
    padding: 0;
}

.progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    background-color: #821478;
    pointer-events: none;
    transition: height 0.250s linear;
}

.copyright {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #777;
    font-size: 10px;
    font-weight: 400;
    pointer-events: none;
}

.liv {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.key {
    color: #00CDFA;
}

.code {
    font: monospace;
}

.header {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.languages {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;
    padding: 40px;
}

.languages a {
    color: #fff;
}

.languages span {
    font-weight: 700;
}

.languages *:last-child {
    margin-left: 5px;
}

/* navbar */

.navbar {
    display: flex;
    align-items: center;
    padding: 40px;
}

.navbar-sections {
    display: inline-block;
    margin-left: 70px;
    position: relative;
}

.navbar-sections a {
    color: white;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-right: 62px;
    line-height: 38px;
}

.navbar-sections a:hover {
    text-decoration: none;
}

.navbar-sections .navbar-sections-toggle {
    font-size: 20px;
}

.navbar-sections-submenu {
    position: absolute;
    display: none;
    background-color: black;
    padding: 0 10px;
    left: -10px;
}

.liv-logo {
    display: inline-block;
    width: 32px;
    max-width: 32px;
}

.navbar-section.selected {
    font-weight: 900;
}

/* section rings */
.section-rings {
    position: absolute;
    left: 35px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.section-ring {
    width: 12px;
    height: 12px;
    margin: 15px 0;
    box-sizing: border-box;
    border: 1px solid white;
    border-radius: 20px;
}

.section-ring.selected {
    padding: 0;
    border: 3px solid white;
}

/* static background */
.static-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url( ../images/liv-logo.png );
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center;
}
