@charset "utf-8";

*{
    margin: 0;
    padding: 0;
}

.lbox{
    visibility: hidden;
    opacity: 0;
    height: 0px;
}

.box-img{
    width: 100%;
    height: 100%;
}

.lbox img{
    width: 65vw;
    position: fixed;
    top: 15%;
    right: 17%;
}


.miniatura{
    width: 200px;
    padding: 10px;
}

.lbox:target{
    visibility: visible;
    opacity: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0%;
    position: fixed;
    background: rgba(10, 10, 10, .7);
}

.box-img img{
    opacity: 0;
}

.lbox:target .box-img img{
    opacity: 1;
    transition: .5s linear;
}

.btn{
    color: white;
    background-color: #696969bf;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 39px;
    text-decoration: none;
    position: absolute;
    text-align: center;    
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border-style: solid;
    border-width: 3px;
    border-color: #dadadabb;
}

.btn:hover{
    background-color: #8a8989bf;
}

#prev{
    left: 5%;
    top: 45%;
}

#next{
    right: 5%;
    top: 45%;
}

#close{
    right: 2%;
    top: 2%;
    font-size: 45px;
}

ul#lbox{
    width: 880px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
}

figure.ft-legenda figcaption{
    position: relative;
    top: 75px;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    color: white;
    opacity: 0;
}

.lbox:target figcaption{
    opacity: 1;
    transition: .5s linear;
}