body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

#iframe-container {
    flex: 1;
}
#iframe-preload {
    display: none;
}

button {
    background-color: black;
}
#loadermeta {
    position: absolute;
    bottom: 50px;
    left: 0;
    padding: 1.5em;
    background-color: black;
    font-family: "Courier New", serif;
    font-size: 0.9rem;
    color: cyan;
    max-width: 200px;
    word-break: break-word;
    transform: translateX(-100%);
    transition: all 500ms cubic-bezier(0.175, 0.885, 0.335, 1.100); /* custom */
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.335, 1.100); /* custom */
}
#loadermeta.animate-in {
    transform: translateX(0);
}
#loadermeta a{
    color: chartreuse;
}

#navigation-bar {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    height: 50px;
    width: 100%;
    border-radius: 0;
    background-color: black;
    box-sizing: border-box;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}

#left-arrow, #right-arrow {
    cursor: pointer;
}

div.button {
    display: flex;
    justify-content: center;
    align-items: center;
}

.button {
    font-size: 1em;
    min-width: 64px;
    padding: 3px 10px;
    text-align: center;
    border-radius: 20px;
    border: 2px solid white;
    color: white;
    cursor: pointer;
    outline: 0;
    transition: all 0.2s linear;
}
.button:active {
    background: white;
    color: black;
}