
.middle{
    position: absolute;
    top: 6vh;
    height: 90vh;
    width: 100vw;
}

.container{
    height: 100%;
}

.viwer{
    width: 90vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.image{
    width :20vw;
    display: flex;
    flex-direction: column;
}

.image img{
    width: 100%;
   
}

.image p{
    color: rgb(212, 212, 212);
    text-align: left;
    background-color: rgb(0, 17, 32);
    margin-bottom: 5px;
    padding: 5px 20px;
    border-radius: 5px;
}

.replace-image{
    color: rgb(124, 124, 124);    
    margin-top: 5px;
   text-align: end; 
}

.replace-image:hover{
    color: blue;
}

.replace-image-hidden{
    display: none;
}



.back{
    position: absolute;
    bottom: 20px;
}

/* Mobile Devices */
@media only screen and (max-width: 480px) {
    .viwer{
        height: 80vh;
        flex-direction: column;
        justify-content: space-between;
        overflow-y: scroll;
        align-items: center;
    }
    
    .image{
        width :80vw;
        margin-bottom: 30px;
    }
}
  
  /* Tablets and Large Phones */
@media only screen and (min-width: 481px) and (max-width: 768px) {
    .viwer{
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .image{
        width :40vw;
        margin-bottom: 30px;
    }

}
  /* Small Laptops and Tablets */
@media only screen and (min-width: 769px) and (max-width: 1024px) {

    .viwer{
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .image{
        width :40vw;
        margin-bottom: 30px;
    }
}


  /* Desktops and Large Laptops */
@media only screen and (min-width: 1025px) and (max-width: 1200px) {
    .viwer{
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .image{
        width :40vw;
        margin-bottom: 30px;
    }
}
  
  /* Widescreen Monitors */
@media only screen and (min-width: 1201px) {
    
}