body {
    overflow-y: hidden;
}

#merotzLogo {
    height: clamp(10vh, 19rem, 35vh);
}

#top picture {
    display: block;
    height: inherit;
}

#top {
    background-color: var(--projColor2);
    background-image: url(../imgs/bg/halftoneBlue-smaller.jpg);
    background-size: cover;
    /* background-blend-mode: multiply; */
}

.topanimation {
    animation: open 3.5s ease 0.8s;
    animation-fill-mode: forwards;
    height: clamp(10vh, 19rem, 35vh);
    min-height: 100vh;
}

@keyframes open {
    from {
        max-height: 100vh;
    }

    to {
        max-height: clamp(10vh, 19rem, 35vh);
        min-height: 10vh;
    }
}

#verify {
    width: 80%;
    padding: 1em;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

#verify img {
    height: 1.5em;
    margin-left: 1em;
}

#verify a {
    text-decoration: underline;
    cursor: pointer;
    color: darkgoldenrod;
}

.admin {
    display: none;
}

.help-button-wrapper {
    position: fixed;
    bottom: 1em;
    right: 0.2em;
    text-align: center;
}

.help-button {
    height: 4em;
    width: 4em;
    font-size: 14px;
    border-radius: 50%;
    border: 0 none;
    background: var(--projColor2);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
    transform: scale(1);
    transition: all 200ms ease;
}

.help-button:hover,
.help-button:focus,
.help-button:active {
    box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2);
    outline: 0;
}

.help-button span {
    display: block;
    font-size: 2em;
    transform: scale(1);
    transition: transform 100ms ease;
}

.expanded .help-button {
    transform: scale(0.7);
    color: rgba(0 0 0 / 55%);
    background: var(--secColor);
}

.help-list {
    list-style: none;
    padding: 0;
    margin: 0;
    transition: all 200ms ease;
    transform: translate(0, 90px) scale(0.5);
    transform-origin: bottom center;
    opacity: 0;
}

.expanded .help-list {
    transform: translate(0px, 10px) scale(1);
    opacity: 1;
}

.help-list li {
    margin-bottom: 0.7em;
    background: hsl(218deg 100% 70%);
    padding: 0.5em;
    border-radius: 0.4em;
    cursor: pointer;
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%),
        0 3px 1px -2px rgb(0 0 0 / 20%),
        0 1px 5px 0 rgb(0 0 0 / 12%);
}

.help-list a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.animateToCorner {
    animation: shrinkToCorner 1s;
    transform-origin: 100% 100%;
    animation-timing-function: linear;
    overflow: hidden;

    /* position: absolute; */
}

@keyframes shrinkToCorner {
    from {
        transform: scale(1) translate(0%, 0%);
        transform-origin: 100% 100%;
    }

    to {
        transform: scale(0.01) translate(150vw, 150vh);
        transform-origin: 100% 100%;
    }
}