.box {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100vw;
    height: 100vh;
}

.row {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 100vw;
    height: 10vh;
}

.center-row {
    display: flex;
    flex-direction: row
}

.c {
    flex-shrink: 2;
    color: black;
}

.c:hover {
    color: red;
    opacity: .7;
}

.cornered {
    position: fixed;
    flex-grow: 1;
    height: 80vh;
    width: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%
}

.bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%
}

.ul,
.ur,
.ll,
.lr {
    z-index: 10;
    padding: 16px;
    font-size: 16pt;
    cursor: pointer;
    color: blue;
    opacity: .3;
}

.ll,
.ul {}

.ul,
.ur {}

.lr,
.ur {}

.ll,
.lr {}

.content {
    width: 100vw;
    height: 100vh;
    position: absolute;
    margin: auto;
    top: 0;
}

.tall {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.corner {
    width: 100vw;
    height: 100vh;
    position: absolute;
    margin: auto;
    top: 0;
    color: black;
}

html {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

body {
    flex-grow: 1;
    padding: 0;
    margin: 0;
    background-color: black;
}

#splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

#palindrome {
    position: fixed;
    margin: auto;
    width: auto;
    height: 100%;
    z-index: .5;
}

#palindromeMorph {
    display: none;
    flex-grow: 1;
    height: 80vh;
    width: auto;
}

#imgOne {
    display: block;
    flex-grow: 1;
    height: 80vh;
    width: auto;
}

#imgTwo {
    display: none;
    flex-grow: 1;
    height: 80vh;
    width: auto;
}