body {
    margin: 0px;
    font-family: sans-serif;
    background-color: #1f3c67;
    color: white;
}

#images {
    display: flex;
    overflow-x: hidden;
    overflow-y: scroll;
    flex-direction: row;
    justify-content: space-evenly;
    max-height: 90vh;
    padding-top: 0px;
}

#images img {
    /* max-width: 100vw; */
    /* max-height: 100%; */
    object-fit: contain;
    height: fit-content;
}

::-webkit-scrollbar { /* Hides scrollbar */
    width: 0;
    background: transparent;
}

#footer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-left: 1vw;
    align-items: center;
    padding-right: 1vw;
    height: 10vh;
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
}

#controls {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: white;
}

#pageCounter {
    width: 3em;
}
/* These hide the arrows in the page number box
 Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

#optionsDiv {
    padding: 5vw;
    border-radius: 10px;
    background-color: #444;
    display: none;
    flex-direction: column;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}
#loginDiv {
    display: flex;
    flex-direction: column;
    padding: 2em;
    border: 1px solid #fff;
    border-radius: 1em;
    background-color:rgb(31, 60, 103);
}

/* Broader stuff */
input {
    font-size: larger;
    height: 5vh;
    text-align: center;
    border: none;
    background-color: darkgray;
    padding: 1vh;
    border-radius: 10px;
}
input::placeholder {
    color: rgb(50,50,100);
}
button {
    font-size: larger;
    height: 7vh;
    padding: 1vh;
    margin-left: 1vh;
    margin-right: 1vh;
    background-color: rgb(251, 187, 50);
    border-radius: 10px;
    border: none;
}
button:hover {
    background-color: rgb(0, 0, 255, 0.5);
    color: white;
}