
body 
{
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    padding: 0;
    overflow-y: hidden;
    overflow-x: hidden;
}

.gallery 
{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 60px;
}

.gallery-item 
{
    text-align: center;
}

.gallery img 
{
    width: 150px;
    height: 150px;
    box-shadow: 0 0 10px;
    object-fit: cover;
    margin-top: 20px;
    border-radius: 50%;
    transition: 0.6s;
}
.text
{
    text-shadow: 0 0 10px;
    transition: .6s;
}
.text:hover
{
    text-shadow: 0 0 10px #8c0000;
    color: #8c0000;
}
.gallery img:hover 
{
    transform: scale(1.1);
    box-shadow: 0 0 20px #8c0000;
}
.popup img 
{
    max-width: 75%;
    max-height: 90%;
    border-radius: 7%;
}
.gallery img:hover ~ .popup 
{
    visibility: visible;
    opacity: 00.3;
}
.small-images 
{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}
.small-images a 
{
    display: block;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: visible;
}
.small-images img 
{
    width: 100%;
    border: none;
    height: 100%;
    object-fit: contain;
}
.text a
{
    color: white;
    text-decoration: none;
    text-align: center;
    transition: .6s;
}
.text a:hover
{
    color: #8c0000;
}
