.img-container{
	margin : 0 1rem;
}


.img-container img{
	border-radius : 5px;
	box-shadow : 0 4px 8px rgba(0, 0, 0, 0.1);
}

.myImage {
    max-width: 100%;
    height: auto;
    cursor: pointer;
}

.exitFullscreenButton {
    display: none;
    position: absolute;
    top: 2rem;
    right: 2rem;
    padding: 1rem 2rem;
    font-size: 2rem;
    background-color: #fff;
    border-radius : 5px;
    cursor: pointer;
    z-index: 301;
}

.fullscreen {
    position: fixed;
    margin : 0;
    padding : 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 300;
    overflow-y : hidden;
}

.fullscreen img {
    max-width: 100%;
    max-height: 100%;
}