html, body {
    padding: 0;
    width: 100vw;
    height: 100vh;
    display: block;
    margin: 0 auto;
    max-width: 440px;/*limit for phones*/
    background: black;
    overflow-x: hidden;
    scrollbar-width: none;
}

/*hide all scrollbars in weird browsers*/
::-webkit-scrollbar {
    width: 0px;
}

#navbuttoncont {

    width: 100%;
    max-width: 440px;/*limit for phones*/
    height: 64px;
    max-height: 20%;

    display: flex;
    gap: 0;
    padding: 0;

    position: fixed;
    z-index: 1000;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);

    background: black;

}

.nav-button {
    width: clamp(64px,20%,88px);
    border: none;
    background: none;
}

.nav-button-image {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bubble {
    color: rgb(141, 211, 255);
}

.headerlogo {
    max-width: 80%;
    max-height: 40px;
    margin-left: 5px;
    margin-top: 10px;
    margin-bottom: 0;/*eliminate auto margin*/
}

.end-content-text {
    font-family: "Helvetica Neue", sans-serif;
    font-size: 1.8rem;
    color: rgb(141, 211, 255);
    border: 4px solid rgb(141, 211, 255);
    width: fit-content;
    padding: 10px;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 64px;/*for nav buttons*/
}
