@import url(styles.css);
body {
    margin: 0;
}

hr {
    border-top: 1px solid green;
    opacity: 0.1;
}

.background {
    /* background: url(http://wallpapercave.com/wp/k7r6fly.jpg); */
    background-size: cover;
    background-repeat: no-repeat;
    /* height: 1000px; */
    width: 100%;
    position: relative;
    top: 60px;
    margin-top: -50px;
}

.container {
    /* height: auto; */
    width: 100%;
    position: relative;
    /* top: 110px; */
    display: inline-block;
    text-align: center;
}

.small {
    /* height: 250px; */
    width: 310px;
    aspect-ratio: 1/1;
    position: relative;
    margin: 1vw;
    border-radius: 5px;
    transition: all 0.8s;
}

.small:hover {
    transform: scale(1.03, 1.03);
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    /* left: 0; */
    /* margin: auto; */
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.lightbox img {
    height: 85vh;
    height: 85svh;
}

.lightbox p {
    font-family: var(--family-3);
}

a div {
    position: relative;
    margin: auto auto;
    text-align: center;
}

.lightbox:target {
    display: flex;
}

.container a {
    text-decoration: none;
}

.container p {
    font-size: 20px;
    color: white;
    font-family: var(--family-2);
}

.section-7 {
    position: relative;
    clear: both;
}

@media all and (max-width: 800px) {
    .lightbox img {
        height: auto;
        width: 100%;
    }
}