body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: red;
}
.page-wrapper {
    width: 75%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}
ul {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}
li {
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}
li img {
    width: 100px;
    border: solid 10px white;
}





.overlay img{
    width: 65%;
    border: solid 10px white;
}
.overlay {
    display: none;
}
input:checked ~ .overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: hsla(0, 0%, 0%, .25);
    width: 100%;
    height: 100vh;
    position: absolute;
    z-index: 1;
}
#abril-thumb {
    display: none;
}

