.hidden {
    display: none !important;
}

#app-container, #main-image, #overlay, #camera, #loading {
    height: 100%;
    width: 100%;
    max-height: 100%;

    position: absolute;
    top: 0;
    left: 0;

    overflow: hidden;
}

#overlay {
    height: 10%;
    display: flex;
    top: unset;
    bottom: 0;
}

#camera canvas {
    display: none;
}

#camera {
    z-index: 10;
    display: flex;
    background-color: white;
}

#camera video {
    max-height: 100%;
    max-width: 100%;
}

#camera button {
    position: absolute;
    bottom: 11%;
}

#loading {
    z-index: 1000;
    display: flex;
    background-color: #ffffffd0;
    justify-content: center;
    align-items: center;
}

#overlay {
    z-index: 100;
}

#overlay .backbutton {
    padding: 1rem;
    margin: 1rem;
    border: 1px solid black;
}

#main-image {
    z-index: 1;
}

#main-image .img-container-container {
    height: 100vh;
    width: max-content;
    padding: 12rem 0;
}

#main-image .img-container {
    height: 100%;
    width: max-content;
    position: relative;
}

#main-image .img-container img {
    height: 100%;
}

#main-image .img-container .link {
    position: absolute;

    width: 3rem;
    height: 3rem;
    border: 6px solid #e5ffe5;
    background-color: #ffed46;
    border-radius: 50%;
}

#main-image .img-container .link.visited {
    background-color: #46ff46;
}
