:root {
    --window-width: 100vw;
}

* {
    padding: 0;
    margin: 0;
    user-select: none;
}

#parallax-box-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}

#parallax-box {
    width: var(--window-width);
    height: var(--window-width);
    background: #7693EF;
}

#scroller {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300vh;
}

.parallax-layer {
    position: absolute;
    width: var(--window-width);
    height: var(--window-width);
}

.parallax-image {
    position: absolute;
    width: var(--window-width);
    height: var(--window-width);
}

body {
    background-color: white;
}

#welcome-box {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 10000;
    position: relative;
    border-style: solid;
    border-width: 0 0 5px 0;
    border-color: black;
    overflow: hidden;
}

#image-box img {
    width: 100%;
    max-width: 100vh;
    max-height: 50vh;
    margin-left: -5px;
}

#image-box {
    width: calc(100% + 8px);
    max-height: 50vh;
    display: flex;
    flex-direction: row;
    padding-bottom: 6px;
}

#image-box-filler {
    flex-grow: 1;
    background-color: white;
}

#welcome-box h1 {
    background-color: #fff;
    font-family: "Inter", sans-serif;
    font-weight: 100;
    padding: 3% 2%;
    font-size: 5vh;
}

#welcome-box s {
    text-decoration-line: line-through;
    text-decoration-thickness: 0.04em;
}

#top-filler {
    width: 100%;
    left: 0;
    top: 0;
    background-color: #fff;
    flex-grow: 1;
}

#bottom-filler {
    width: 100%;
    left: 0;
    bottom: 0;
    background-color: #fff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bottom-filler-element {
    width: 100%;
    flex-grow: 1;
}

.bottom-filler-element svg {
    display: block;
    margin: auto;
}

#funky-h1 {
    margin: -6px;
}

#not-funky-h1 {
    margin: -2px;
}

#border {
    box-sizing: border-box;
    width: var(--window-width);
    height: var(--window-width);
    border: 5px solid black;
    position: fixed;
    box-shadow: 0 0 0 1600px white;
    background: none;
    pointer-events: none;
}

.foreground-object {
    position: absolute;
}

.foreground-object-link:hover {
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
}

#scroll-arrow div {
    font-family: "Inter", sans-serif;
    font-weight: 100;
    text-align: center;
    margin: 10px;
}

#tutorial-box {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: black;
    opacity: 0;
    transition: opacity 1s ease;
    display: none;
    z-index: 10;
}

#tutorial-box h1 {
    font-family: "Inter", sans-serif;
    font-weight: 100;
    color: white;
    font-size: 40px;
    text-align: center;
    margin-top: calc(50vh - 300px);
}

#close-tutorial-box {
    position: fixed;
    top: 20px;
    right: 20px;
}

#house {
    position: fixed;
    top: calc(50vh - 206px);
    left: calc(50vw - 381px);
}

#pointer {
    position: fixed;
    bottom: calc(50vh - 300px);
    right: calc(50vw - 300px);
}