body {
    background-color: #babec2;
    position: relative;
    margin:0;
    padding: 0;
}
.overlay{
    display: none;
    position: absolute;
    width: 100%;
    min-height: 100vh;
    top:0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: rgba(0,0,0,0.7);
    z-index:1;
}

#title {
    text-align: center;
    text-shadow: 2px 2px 2px;
    font-size: 3rem;
    margin-top: 0;
}

#preview {
    display: none;
    justify-content: center;
    align-items: start;
    position: absolute;
    top: 50px;
    left: 0;
    right:0;
    bottom:750px;
    width: 98%;
    margin:0 auto;
    background-color:#ccc;
    border-radius: 20px;
    /* background-color: rgba(200, 150, 0, 0.4); */
    z-index: 2;
}

.container {
    display: flex;
    justify-content: space-between;
    justify-items: center;
    flex-wrap: wrap;
}

.container>div {
    margin: auto;
    margin-bottom: 20px;
}

.container>div>img {
    width: 400px;
    height: 300px;
    cursor: pointer;
    box-shadow: 10px 10px 25px; border-radius: 20px;
}

@media (max-width: 1215px) {
    .container>div>img {
        width: 380px;
        height: 300px;
    }
}

@media (max-width: 1156px) {
    .container>div>img {
        width: 350px;
        height: 300px;
    }
}

@media (max-width: 1065px) {
    .container>div>img {
        width: 450px;
        height: 350px;
    }
}

@media (max-width: 915px) {
    .container>div>img {
        width: 400px;
        height: 300px;
    }
}

@media (max-width: 815px) {
    .container>div>img {
        width: 350px;
        height: 250px;
    }
    #title {
        font-size: 1.5rem;
    }
}

@media (max-width: 715px) {
    .container>div>img {
        width: 100%;
        height: 100%;
    }
    #title {
        font-size: 1.2rem;
    }
	.container>div{
		margin:auto 10px;
	}
}

@media (max-width: 568px){
	
}
.btn-close {
    float: right;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    font-weight: 800;
}

.circle {
    border-radius: 50%;
}