body {
    background-color: #090C09;
    color: white;
    font-family: 'Courier New', Courier, monospace;
}

#gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

#image_div {
    border: 2px solid #787778;
    display: flex;
    width: 300px;
    flex-direction: column;
    cursor: pointer;
}

#image_wrapper {
    border: 2px solid #787778;
    display: flex;
    align-items: center;
}

#image_wrapper_parent {
    height: max-content;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#div_info {
    display: flex;
    gap: 4px;
    align-items: center;
}

#coin_of {
    font-size: medium;
    overflow-wrap: anywhere;
}

#date {
    overflow-wrap: anywhere;
    font-weight: 800;
}

#No_img_mes {
    margin-block-end: 0px;
    margin-block-start: 0px;

}

@media only screen and (max-width: 768px) {
    #gallery {
        justify-content: center;
    }
}

#image_container_parent {
    width: 100vw;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    gap: 20px
}

#img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    object-fit: contain;
}

#chevron-back-btn {
    width: fit-content;
    position: absolute;
    left: 10px;
    font-size: xx-large;
    cursor: pointer;
    display: flex;
    background: transparent;
    color: white;
    border: none;
    z-index: 4;
}

#chevron-forward-btn {
    cursor: pointer;
    position: absolute;
    right: 10px;
    font-size: xx-large;
    display: flex;
    background: transparent;
    color: white;
    border: none;
    z-index: 4;
}

#image_receiver {
    display: none;
    width: 500px;
    height: 300px;
    border: 1px solid white;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: 1500px 1800px;
}

#lens {
    display: none;
    width: 100px;
    height: 100px;
    border: 1px solid white;
    pointer-events: none;
    transform: translate(-50%, -50%);
    position: absolute;
}

#size_div {
    display: none;
    align-items: center;
    position: absolute;
    top: 10px;
    right: 10px;
    font-family: 'Courier New', Courier, monospace;
}

#Size_select,
option {
    background-color: #121;
    border: 0.2px solid white;
    outline: none;
    padding: 4px;
    color: white;
    border-radius: 4px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 800;
}

option {
    background-color: #333;
    color: #fff;
}

#Image_Zoom,
#Close_Image_Zoom {
    background-color: transparent;
    color: white;
    border: 0.2px solid white;
    padding: 4px;
    font-family: 'Courier New', Courier, monospace;
    border-radius: 4px;
    font-size: medium;
    font-weight: 800;
    position: absolute;
    top: 10px;
    left: 10px;
    cursor: pointer;
    display: none;
}

#Close_Image_Zoom {
    left: 120px;
    padding: 5px;
    color: white;
    border: 0.2px solid white;
}

@media only screen and (max-width: 868px) {
    #image_container_parent {
        flex-direction: column;
    }

    #image_receiver {
        width: -webkit-fill-available;
        height: 500px;
    }
}