html body {
    margin: 0;
    padding: 0;
}
#displayRoot {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1s ease-in;
    --linkHeight: 10px;
    --titleFontSize: 8px;
}
.canvas * {
    position: inherit;
}
#wallRoot, #linkRoot, #nullLogo, .titles, .linkFrames {
    visibility: hidden;
}
.walls {
    width: 100%;
    height: var(--wallsHeight);
    overflow: hidden;
    transition: transform 1s ease-in-out;
}
.wallBackgrounds {
    width: 100%;
    height: 100%;
    transition: opacity 1s ease-in-out 0.5s;
}
.nullLogos {
    opacity: 0.3;
    top: 50%;
    transform: translate(-50%, -50%) scale(2, 1);
}
.titles {
    height: var(--linkHeight);
    width: auto;
    font-size: var(--titleFontSize);
    color: var(--titleColor);
    padding-left: var(--titlePadding);
    padding-right: var(--titlePadding);
    white-space: nowrap;
    pointer-events: auto;
    cursor: pointer;
}
.linkFrames {
    width: var(--linkWidth);
    height: var(--linkHeight);
    box-sizing: border-box;
}
.links {
    width: 100%;
    height: 100%;
    border: 1px solid black;
    pointer-events: auto;
    cursor: pointer;
    transform-origin: center;
    transform: var(--linkScale);
    transition: border 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.links:hover {
    border: 2px solid white;
    transform: scale(0.95);
}
.linkImages {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.jpgs {
    z-index: 1;
}
.gifs {
    opacity: 0;
    z-index: 2;
    transition: opacity 1s ease-in-out;
}
.links:hover .gifs, .reveal {
    opacity: 1;
}
