.content {
    background-image: url("../assets/sprites/bg_line.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    bottom: 0;
}

#camera--output {
    position: relative;
    display: block;
    /* padding: 20px;
    width: calc(100vw - 40px);
    height: calc(100vh - 40px); */
    aspect-ratio: 900 / 1290;
    width: 100vw;
    /* height: 100vh; */
    /* height: calc(100vh); */
    object-fit: contain;
}

.f-capture {
    margin-top: 4vh;
    display: flex;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
    position: absolute;
}

#capture-button {
    position: relative;
    width: 25vw;
    aspect-ratio: 1;
    max-width: 185px;
    background-color: rgba(0, 0, 0, 0);
    box-sizing: border-box;
}

#f-preview {
    flex-direction: column;
}

#again-button,
#save-button {
    position: relative;
    width: 45vw;
    aspect-ratio: 423 / 104;
    max-width: 423px;
    background-color: rgba(0, 0, 0, 0);
    box-sizing: border-box;
}

#rotation-button {
    position: fixed;
    width: 12vw;
    aspect-ratio: 1;
    max-width: 147px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0);
    border: 0px;
}

#share-button {
    /* position: relative; */
    aspect-ratio: 584 / 165;
    width: 55vw;
    background-color: rgba(0, 0, 0, 0);
    margin-bottom: 38px;
}

#capture-button img,
#rotation-button img,
#again-button img,
#save-button img,
#share-button img {
    width: 100%;
}

@media (min-aspect-ratio: 900 / 1600) {
    #share-button {
        width: 32vh;
    }

    #capture-button {
        width: 12vh;
    }

    #rotation-button {
        width: 7vh;
    }

    #again-button,
    #save-button {
        width: 22vh;
    }
}