* {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    --bg-color: #D2D2D2;
    --text-gray: #F8F7F9;
    --accent-green: #2B2D42;
    line-height: 28px;
    margin: 10px;
    width: 100%;
    min-height: 100vh;
    font-family: "Helvetica", Arial, sans-serif;
    color: var(--text-gray);
    background: var(--bg-color);
    font-size: 28px;
    position: relative;
    overflow-x: hidden;
}

::selection {
    background: var(--accent-green);
    color: var(--bg-color);
}

::-moz-selection {
    background: var(--accent-green);
    color: var(--bg-color);
}

u {
    text-decoration: none;
    color: var(--accent-green);
}

a {
    text-decoration: none;
    cursor: pointer;
}

a.link:not(.title .link) {
    color: var(--bg-color);
    background-color: var(--accent-green);
    padding: 4px 5px;
    line-height: 20px;
    position: relative;
    z-index: 10;
    display: inline-block;
}

.title .link {
    color: var(--accent-green);
    background-color: transparent;
    padding: 0;
}

a:hover {
    color: #b1b1b1;
}

i {
    transition: opacity 0.5s ease;
}

.highlight {
    display: inline;
}

.question {
    display: inline;
}

b.static {
    color: var(--accent-green);
    opacity: 1 !important;
}

b.static-gray {
    color: var(--text-gray);
    opacity: 1 !important;
}

.static-line {
    display: block;
}

.title {
    display: block;
    font-size: 60px;
    line-height: 60px;
}

.vcontent {
    visibility: hidden;
    opacity: 0;
    transition: opacity 1s ease;
    position: fixed;
    z-index: 99999;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: var(--bg-color);
    overflow-x: hidden;
}

.vcontent.active {
    opacity: 1;
    visibility: visible;
}

.vcontent-header {
    position: absolute;
    top: 10px;
    left: 10px;
}

.vcontent-title {
    font-size: 60px;
    line-height: 60px;
    color: var(--accent-green);
    margin-bottom: 10px;
}

.vcontent-description {
    font-size: 30px;
    line-height: 30px;
    color: var(--text-gray);
}

.vcontent-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.vcontent-instruction {
    font-size: 30px;
    line-height: 30px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.vcontent-start {
    padding: 5px 20px;
    background: var(--accent-green);
    color: var(--bg-color);
    border: none;
    cursor: pointer;
    font-size: 30px;
}

.vcontent .vback {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    background: var(--accent-green);
    color: var(--bg-color);
    border: none;
    cursor: pointer;
    z-index: 99999;
}

.sketch-overlay {
    visibility: hidden;
    opacity: 0;
    transition: opacity 1s ease;
    position: fixed;
    z-index: 100000;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: var(--bg-color);
    overflow: hidden;
}

.sketch-overlay.active {
    opacity: 1;
    visibility: visible;
}

.vcontent-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: none;
}

.vcontent-iframe.active {
    display: block;
}

.vback-sketch {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    background: var(--accent-green);
    color: var(--bg-color);
    border: none;
    cursor: pointer;
    z-index: 100001;
    font-size: 30px;
}

.image-placeholder {
    position: relative;
    width: 380px;
    height: 220px;
    float: left;
    margin-right: 10px;
    visibility: hidden;
}

.image-placeholder.active {
    visibility: visible;
}

.pathways-placeholder {
    position: relative;
    width: 300px;
    height: 200px;
    float: right;
    margin-left: 10px;
    visibility: hidden;
}

.pathways-placeholder.active {
    visibility: visible;
}

.focus-image,
.gravity-image,
.pathways-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.focus-image.active,
.gravity-image.active,
.pathways-image.active {
    opacity: 1;
}

.interview {
    position: relative;
    min-height: 100vh;
}

@media screen and (max-width: 768px) {
    body {
        font-size: 25px;
        line-height: 25px;
    }

    .title {
        font-size: 50px;
        line-height: 50px;
    }

    .vcontent-title {
        font-size: 50px;
        line-height: 50px;
    }

    .vcontent-description {
        font-size: 25px;
        line-height: 25px;
    }

    .vcontent-instruction {
        font-size: 25px;
        line-height: 25px;
    }

    .vcontent-start {
        font-size: 25px;
    }

    .image-placeholder,
    .pathways-placeholder {
        width: 150px;
        height: 100px;
    }

    a.link:not(.title .link) {
        line-height: 15px;
        padding: 4px 5px;
    }
}